Install local jars with Maven install plugin
This commit is contained in:
parent
6b41ae5971
commit
198cd1302e
40
pom.xml
40
pom.xml
@ -94,6 +94,46 @@
|
||||
</suiteXmlFiles>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>install-marc4j</id>
|
||||
<phase>process-resources</phase>
|
||||
<configuration>
|
||||
<file>${basedir}/libs/marc4j/marc4j/2.4/marc4j-0.0.1.jar</file>
|
||||
<repositoryLayout>default</repositoryLayout>
|
||||
<groupId>marc4j.marc4j</groupId>
|
||||
<artifactId>marc4j</artifactId>
|
||||
<version>2.4</version>
|
||||
<packaging>jar</packaging>
|
||||
<generatePom>true</generatePom>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>install-file</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>install-butterfly</id>
|
||||
<phase>process-resources</phase>
|
||||
<configuration>
|
||||
<file>${basedir}/libs/edu/mit/simile/butterfly/1.0.1/butterfly-1.0.1.jar</file>
|
||||
<repositoryLayout>default</repositoryLayout>
|
||||
<groupId>edu.mit.simile</groupId>
|
||||
<artifactId>butterfly</artifactId>
|
||||
<version>1.0.1</version>
|
||||
<packaging>jar</packaging>
|
||||
<generatePom>true</generatePom>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>install-file</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
Loading…
Reference in New Issue
Block a user