我目前正在使用:
mvn install:install-file -Dfile={path/to/my/legacy.jar} -DgroupId=horrible -DartifactId=legacy.jar -Dversion=1.2.3 -Dpackaging=jar
将一些旧的传统罐子导入我的仓库。这很好,是推荐的方法。好像这可以用POM而不是我现在使用的命令行+脚本来完成。我认为有更清洁:
mvn install:install-file
让我的repo存储版本细节,而不是将这些信息存储在非maven脚本中(对于maven来说这是奇怪的)。我尝试通过设置标记公开这些-D设置,但这不起作用。有没有其他人试过这个并让它起作用?
答案 0 :(得分:31)
好的,回答我自己的问题:P。你可以通过定义属性来做到这一点,我最初假设groupId等是自动导出为属性但它们不是。
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.whatever</groupId>
<artifactId>Stuff</artifactId>
<version>1.2.3</version>
<description>
Description of why this horrible jar exists.
</description>
<properties>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<packaging>${project.packaging}</packaging>
<file>mylegacy.jar</file>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
您现在可以使用以下方式安装文件:
mvn install
和这个pom.xml。我用maven 3而不是2测试了这个。
对于多个文件,另请参阅Maven POM file for installing multiple 3rd party commercial libraries