我们在这里也有类似的需求,需要保留非 Maven 工件的标签并在我们的关系中更新它们。
我们这样做的方式是在版本控制中有一个“第三方”项目,它存储非 Maven 工件,每个工件都有自己的 pom 文件。
当您升级任何第三方时,您会覆盖第三方项目中的旧版本,在相关的 pom 文件中打包版本并运行"mvn deploy"
以将其放入我们的存储库中。
导致 *.tar.gz 的“构建”的 pom 文件将具有这样的 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>myArtifact</artifactId>
<packaging>pom</packaging> <!-- so it wont auto-create any *.jars or anything -->
<build>
<resources>
<resource>
<!-- put a configuration here to copy your artifact to /target -->
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy static resource files</id>
<goals>
<goal>resources</goal>
</goals>
<phase>generate-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<!-- this creates your *.tar.gz -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>Create final ZIP package</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<descriptors>
<descriptor>platform-assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
旁边有一个看起来很像的描述符:这个将一堆东西打包为 *.tar.gz,保留 *.sh 文件的可执行标志。您需要进行编辑以满足您的需求
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>${envClassifier}</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>yourTargetDir</directory>
<outputDirectory>/</outputDirectory>
<excludes>
<exclude>**/*.sh</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>yourTargetDir</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>**/*.sh</include>
</includes>
<fileMode>755</fileMode>
</fileSet>
</fileSets>
</assembly>
编辑:如果您不需要提取/混淆/ *.tar.gz 工件,那么您有一个更简单的选项 - 使用构建助手 maven 插件的附加工件目标来简单地附加您的 *.tar.gz 以包含在部署/安装
您显然需要更新依赖于这个新工件版本的所有步伐。