2013-08-02 133 views
2

我有这个Maven配置,我想不同的操作系统上使用:不能建立Maven项目

<?xml version="1.0" encoding="UTF-8"?> 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 

    <groupId>com.dx57dc</groupId> 
    <artifactId>DX57DC</artifactId> 
    <version>1.0</version> 
    <packaging>jar</packaging> 

    <name>DX57DC</name> 

    <properties> 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
     <mainClass>com.dx57dc.MainApp</mainClass> 
    </properties> 

    <profiles> 
     <profile> 
      <activation> 
       <os> 
        <name>Windows XP</name> 
        <family>Windows</family> 
        <arch>x86</arch> 
        <version>5.1.2600</version> 
       </os> 
      </activation> 

      <build> 
       <plugins> 
        <plugin> 
         <groupId>org.apache.maven.plugins</groupId> 
         <artifactId>maven-dependency-plugin</artifactId> 
         <version>2.8</version> 
         <executions> 
          <execution> 
           <id>unpack-dependencies</id> 
           <phase>package</phase> 
           <goals> 
            <goal>unpack-dependencies</goal> 
           </goals> 
           <configuration> 
            <excludeScope>system</excludeScope> 
            <excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds> 
            <outputDirectory>${project.build.directory}/classes</outputDirectory> 
           </configuration> 
          </execution> 
         </executions> 
        </plugin> 
        <plugin> 
         <groupId>org.codehaus.mojo</groupId> 
         <artifactId>exec-maven-plugin</artifactId> 
         <version>1.2.1</version> 
         <executions> 
          <execution> 
           <id>unpack-dependencies</id> 

           <phase>package</phase> 
           <goals> 
            <goal>exec</goal> 
           </goals> 
           <configuration> 
            <executable>${java.home}/../bin/javafxpackager</executable> 
            <arguments> 
             <argument>-createjar</argument> 
             <argument>-nocss2bin</argument> 
             <argument>-appclass</argument> 
             <argument>${mainClass}</argument> 
             <argument>-srcdir</argument> 
             <argument>${project.build.directory}/classes</argument> 
             <argument>-outdir</argument> 
             <argument>${project.build.directory}</argument> 
             <argument>-outfile</argument> 
             <argument>${project.build.finalName}.jar</argument> 
            </arguments> 
           </configuration> 
          </execution> 
         </executions> 
        </plugin> 
        <plugin> 
         <groupId>org.apache.maven.plugins</groupId> 
         <artifactId>maven-compiler-plugin</artifactId> 
         <version>3.1</version> 
         <configuration> 
          <source>1.7</source> 
          <target>1.7</target> 
          <compilerArguments> 
           <bootclasspath>${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar</bootclasspath> 
          </compilerArguments> 
         </configuration> 
        </plugin> 
       </plugins> 
      </build> 

     </profile> 

     <profile> 
      <activation> 
       <os> 
        <name>Linux</name> 
        <family>Linux</family> 
        <arch>x86</arch> 
        <!-- <version>5.1.2600</version> --> 
       </os> 
      </activation> 

      <build> 
       <plugins> 
        <plugin> 
         <groupId>org.apache.maven.plugins</groupId> 
         <artifactId>maven-dependency-plugin</artifactId> 
         <version>2.8</version> 
         <executions> 
          <execution> 
           <id>unpack-dependencies</id> 
           <phase>package</phase> 
           <goals> 
            <goal>unpack-dependencies</goal> 
           </goals> 
           <configuration> 
            <excludeScope>system</excludeScope> 
            <excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds> 
            <outputDirectory>${project.build.directory}/classes</outputDirectory> 
           </configuration> 
          </execution> 
         </executions> 
        </plugin> 
        <plugin> 
         <groupId>org.codehaus.mojo</groupId> 
         <artifactId>exec-maven-plugin</artifactId> 
         <version>1.2.1</version> 
         <executions> 
          <execution> 
           <id>unpack-dependencies</id> 

           <phase>package</phase> 
           <goals> 
            <goal>exec</goal> 
           </goals> 
           <configuration> 
            <executable>${java.home}/../bin/javafxpackager</executable> 
            <arguments> 
             <argument>-createjar</argument> 
             <argument>-nocss2bin</argument> 
             <argument>-appclass</argument> 
             <argument>${mainClass}</argument> 
             <argument>-srcdir</argument> 
             <argument>${project.build.directory}/classes</argument> 
             <argument>-outdir</argument> 
             <argument>${project.build.directory}</argument> 
             <argument>-outfile</argument> 
             <argument>${project.build.finalName}.jar</argument> 
            </arguments> 
           </configuration> 
          </execution> 
         </executions> 
        </plugin> 
        <plugin> 
         <groupId>org.apache.maven.plugins</groupId> 
         <artifactId>maven-compiler-plugin</artifactId> 
         <version>3.1</version> 
         <configuration> 
          <source>1.7</source> 
          <target>1.7</target> 
          <compilerArguments> 
           <bootclasspath>/opt/java/jre/lib/ext/jfxrt.jar</bootclasspath> 
          </compilerArguments> 
         </configuration> 
        </plugin> 
       </plugins> 
      </build> 

     </profile> 
    </profiles> 


</project> 

我得到这样的警告消息:

--- exec-maven-plugin:1.2.1:exec (default-cli) @ DX57DC --- 
Error: Unable to access jarfile D:\Documents 

你能告诉我什么是正确的如何配置这个POM文件?

P.S后,我补充说:“”与他们或没有我得到的Windows此错误:

[exec:exec] 
java.lang.NoClassDefFoundError: javafx/application/Application 
    at java.lang.ClassLoader.defineClass1(Native Method) 
    at java.lang.ClassLoader.defineClass(ClassLoader.java:792) 
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) 
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) 
    at java.net.URLClassLoader.access$100(URLClassLoader.java:71) 
    at java.net.URLClassLoader$1.run(URLClassLoader.java:361) 
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424) 
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357) 
    at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:482) 
Caused by: java.lang.ClassNotFoundException: javafx.application.Application 
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366) 
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424) 
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357) 
    ... 13 more 
Exception in thread "main" [INFO] ------------------------------------------------------------------------ 
BUILD FAILURE 
------------------------------------------------------------------------ 
Total time: 1.000s 
Finished at: Fri Aug 02 14:09:35 PDT 2013 
Final Memory: 6M/15M 
------------------------------------------------------------------------ 
Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project DX57DC: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1] 

To see the full stack trace of the errors, re-run Maven with the -e switch. 
Re-run Maven using the -X switch to enable full debug logging. 

For more information about the errors and possible solutions, please read the following articles: 
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException 

回答

4

我认为它是因为一些发送给exec-Maven的插件中包含空格的参数。

在你的情况下,它看起来像${project.build.directory}或其他一些变量解析为C:\Documents and Settings\something

你逝去的是:

<argument>-srcdir</argument> 
<argument>${project.build.directory}/classes</argument> 

它将解析为:-srcdir=C:\Documents and Settings\something/classes

当它应该是这样的:-srcdir="C:\Documents and Settings\something/classes"与“”。

+0

我在Windows XP中使用NetBeans 7.4。我在nbactions.xml中加入了引号: -jar“$ {basedir} /target/mavenproject1-1.0-SNAPSHOT.jar”。问题解决了。 –

1

在你的exec-插件配置,把“”周围所有的属性<argument>标签(包含在其中美元的) 这样

<arguments> 
    <argument>-createjar</argument> 
    <argument>-nocss2bin</argument> 
    <argument>-appclass</argument> 
    <argument>"${mainClass}"</argument> 
    .... 
</arguments> 
+0

我更新了帖子 –

+0

看起来你在运行maven-exec的时候在你的类路径中缺少一个jar。你的一个''参数可能是错误的,特别是包含javafx.application.Application的参数。要么你没有通过它的jar,或者班级不在你认为的文件夹中,请检查你的属性路径以确保班级在其中一个路径中 – Hilikus