gpt4 book ai didi

maven-2 - 如何通过 self 可持续的 Maven 构建来创建源代码分发?

转载 作者:行者123 更新时间:2023-12-02 12:10:59 25 4
gpt4 key购买 nike

我想要做的是创建我的应用程序的源代码分发以及所有依赖项并将其刻录在 DVD 上。 这样我就可以在 100 年内 build 它(好吧,好吧,你知道我的意思......)。没有对库或 Maven 插件的在线依赖!

我知道 Ant 会更好,但我在我的项目中使用 Maven。我不会仅仅为了这个而切换到 Ant,我会问如何使用 Maven 来做到这一点。或者,如果有一种方法可以生成 self 可持续的 Ant 构建,我可以将其放在 DVD 上,那也很棒。(有 ant:ant 插件,但它只是生成 Ant build.xml,将依赖项指向本地 Maven 存储库)

我采取的方法是创建特殊的本地存储库,我可以将其放在 DVD 上,然后使用 mvn -o -Dmaven.repo.local=repo/on/dvd 构建项目>。我试图将 dependency:copy-dependenciesuseRepositoryLayout 参数设置为 true 来创建这样的存储库。但它不会复制我的构建所依赖的该死的 Maven 插件...

最佳答案

我能想到的包含插件的唯一方法是在命令行上为构建指定不同的本地存储库,并确保下载所有依赖源等,然后创建一个包含项目内容和自定义存储库的存档.

这是一个下载源代码和 javadocs 的 pom(它将它们下载到项目的目标目录,我们将其从存档中排除,因为它们也将位于本地存储库中)。程序集描述符将项目的内容和本地存储库捆绑到一个(相当大的)存档中。

请注意,处理全部在配置文件中,因为您确实不希望在每个版本上运行它。如果临时本地存储库位于目标目录中,您可以随后使用 mvn clean 轻松清理困惑。要激活配置文件,请执行以下操作:

mvn package -Parchive -Dmaven.repo.local=.\target\repo

这是 pom:

<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>name.seller.rich</groupId>
<artifactId>test-archive</artifactId>
<version>0.0.1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>archive</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>sources</id>
<phase>pre-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<classifier>sources</classifier>
<failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
<!--the target directory won't be included, but the sources will be in the repository-->
<outputDirectory>${project.build.directory}/sources</outputDirectory>
</configuration>
</execution>
<execution>
<id>javadocs</id>
<phase>pre-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<classifier>javadoc</classifier> <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact>
<outputDirectory>${project.build.directory}/javadocs</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/archive.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

这是程序集:

<assembly>
<id>archive</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.basedir}</directory>
<outputDirectory>/</outputDirectory>
<excludes>
<exclude>target/**</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>${maven.repo.local}</directory>
<outputDirectory>repo</outputDirectory>
</fileSet>
</fileSets>
</assembly>

关于maven-2 - 如何通过 self 可持续的 Maven 构建来创建源代码分发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1191103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com