在jar类型的maven项目中构建依赖项

时间:2014-02-25 13:38:33

标签: java maven jar dependencies

我有一个包类型jar的maven项目,它有一些依赖项,在构建项目时将打包在生成的jar文件中。其中一些依赖项是我自己的项目,我想在构建当前项目时自动重新构建。怎么能实现这一目标?我目前只找到<modules>部分,它只能用于包类型pom,所以这似乎是不可能的。关于这个问题的任何想法?这里是当前包的简短示例:

<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>mygroup</groupId>
    <artifactId>myproject2</artifactId>
    <version>0.0.1</version>
    <packaging>jar</packaging>
    <name>myproject2</name>

    <build>
        <plugins>
            <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>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>mymainclass</mainClass>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <appendAssemblyId>false</appendAssemblyId>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.15</version>
                <configuration>
                    <enableAssertions>false</enableAssertions>
                </configuration>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        [... some external dependencies ...]
        <dependency>
            <groupId>mygroup</groupId>
            <artifactId>myproject1/artifactId>
            <version>0.0.1</version>
        </dependency>
    </dependencies>
</project>

UPDATE:

详细说明我试图解决的开发问题:

想象一下,你在IDE中打开了两个项目(我使用netbeans)。您正在调试myproject2以追踪一些错误。您可以通过单击类名或按照调试器中的步骤跳过代码来导航。

这可能经常导致myproject1发生变化而你甚至没有注意到它。结果你将重建myproject2(你正在调试),而不会自动重建myproject1。错误仍然发生,您可能无能为力,为什么会发生这种情况并搜索并搜索另一个错误,直到您意识到之前没有重建myproject1。然后你必须在myproject2之后重建myproject1,然后才会有正确的行为(或下一个bug)。这在工作中经常发生。

单独的多项目POM可能会发生同样的情况,这本质上是另一个在IDE中处理代码时将会忘记的项目。

1 个答案:

答案 0 :(得分:0)

您可以创建一个多模块项目,其中包含相关项目和相关项目作为模块。父项目的类型为“pom”,但触发父项目的构建将导致重新构建所有模块。

    <groupId>group</groupId>
    <artifactId>artifact</artifactId>
    <version>1.0</version>
    <packaging>pom</packaging>

    <modules>
        <module>dependency.1</module>
        <module>dependency.2</module>
        <module>your.project</module>       
    </modules>