将javafx应用程序与maven捆绑在一起时不必要的依赖关系

时间:2015-03-11 18:22:17

标签: java maven maven-3 javafx-8

我正在使用javafx maven插件使用maven构建JavaFX应用程序。现在当我执行mvn jfx:jar时,它会将大量不必要的jar复制到生成的lib目录中,例如:

  • ant-1.8.2.jar
  • maven-antrun-plugin-1.7.jar
  • maven-plugin-api-2.0.11.jar

还有更多。所以,它基本上是我用于编译应用程序的所有内容 - 但运行它当然不需要它。我觉得我应该在POM中的某处添加<scope>compile</scope>,但是<plugin>元素不会将其作为孩子。如何告诉maven不要在用mvn jfx:jar创建的lib目录中包含我用于编译的插件?

编辑:如果POM有帮助,这里是POM:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
     xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
    <groupId>org.flyx.dsa.heldendokument</groupId>
    <artifactId>parent</artifactId>
    <version>0.1-SNAPSHOT</version>
</parent>
<artifactId>gui</artifactId>
<version>0.1-SNAPSHOT</version>
<name>gui</name>
<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.yaml</groupId>
        <artifactId>snakeyaml</artifactId>
        <version>1.15</version>
    </dependency>
    <dependency>
        <groupId>org.flyx.dsa.heldendokument</groupId>
        <artifactId>generator</artifactId>
        <version>0.1-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>org.controlsfx</groupId>
        <artifactId>controlsfx</artifactId>
        <version>8.20.8</version>
    </dependency>
</dependencies>
<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <classpathPrefix>lib/</classpathPrefix>
                            <mainClass>org.flyx.dsa.heldendokument.gui.App</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.zenjava</groupId>
                <artifactId>javafx-maven-plugin</artifactId>
                <version>8.1.2</version>
                <configuration>
                    <mainClass>org.flyx.dsa.heldendokument.gui.App</mainClass>
                    <appName>DSA Heldendokument-Generator</appName>
                    <needMenu>false</needMenu>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <excludes>
                <exclude>aboutWindow.fxml</exclude>
            </excludes>
        </resource>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
            <includes>
                <include>aboutWindow.fxml</include>
            </includes>
        </resource>
    </resources>
</build>
</project>

1 个答案:

答案 0 :(得分:0)

我是javafx-maven-plugin的维护者。

据我所知,你的pom.xml没有任何问题,当你将插件版本升级到当前的8.1.5时,这可能已经有用了吗?

要确定某些依赖项的来源,请致电<dependency> <groupId>org.flyx.dsa.heldendokument</groupId> <artifactId>generator</artifactId> <version>0.1-SNAPSHOT</version> </dependency> ,也许这是您自己的依赖:

Set(foo=${FILE(/tmp/test.txt)})

让我感到困惑的是:为什么要投入&#34;插件管理&#34;在你的构建中而不仅仅是&#34;插件&#34;?