6

在我的项目中,我有一个子项目自动更新程序。基本上是一个 jar 文件,当更新可用时提取并运行。

是否可以编译子项目,然后将输出的 jar 放置为 agenerated-resource以便updater.jar包含在最终的 jar 中,例如:

Project-1.0.jar
 |-updater.jar
    |-Main.class
    |-B.class

在此先感谢您的帮助(我是 Maven 新手)

4

3 回答 3

4

此任务要求maven-assembly-plginmaven-dependency-plugin

(我希望更新程序也是 maven 项目)这应该是 maven-dependency-plugin 的正确配置 [我没有测试这个,您可能还需要将更新程序放入项目依赖项]

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.7</version>
        <executions>
          <execution>
            <id>copy</id>
            <phase>prepare-package</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>company.com.project</groupId>
                  <artifactId>Updater</artifactId>
                  <version>0.0.1-SNAPSHOT</version>
                  <type>jar</type>
                  <outputDirectory>${project.build.outputDirectory}/classes</outputDirectory>
                  <destFileName>updater.jar</destFileName>
                </artifactItem>
              </artifactItems>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  [...]
</project>
于 2013-03-20T21:00:38.643 回答
0

如果你的小 jar 也是用 Maven 构建的,那就太好了。然后假设您的小罐子 POM 包含以下内容:

<groupId>company.com.project</groupId>
<artifactId>Updater</artifactId>
<version>0.0.1-SNAPSHOT</version>

那么你的 Project-1.0 应该使用这个依赖:

<dependency>
    <groupId>company.com.project</groupId>
    <artifactId>Updater</artifactId>
    <version>0.0.1-SNAPSHOT</version>
</dependency>
于 2013-03-20T13:47:31.750 回答
0

将子项目添加到您的父项目中,如下所示

<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/maven-v4_0_0.xsd">

    <modelVersion>1.0.0</modelVersion>
    <groupId>Project-1.0</groupId>
    <artifactId>myproject</artifactId>
    <packaging>pom</packaging>

    <version>1.0-SNAPSHOT</version>

    <name>Project-1.0</name>

    <modules>
        <module>../updater</module>
    </modules>

    ...
</project>

然后在您的更新程序项目 pom 文件中进行以下更改

<?xml version="1.0"?>
<project>
  <parent>
    <artifactId>myproject</artifactId>
    <groupId>Project-1.0</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>

  <groupId>Project-1.0</groupId>
  <artifactId>updater</artifactId>
  <version>1.0-SNAPSHOT</version>

  ...

</project>

编译父项目时,子项目将自动编译。

然后在你的jar中添加子项目jar,在父pom.xml中添加以下插件

 <plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
      <execution>
        <phase>process-resources</phase>
        <configuration>
          <tasks>
            <copy todir="${project.build.directory}/lib">
              <fileset dir="${location of updater1.0.jar}"/>
            </copy>
          </tasks>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
    </executions>
  </plugin>
于 2013-03-20T13:54:21.283 回答