Updated pom file to install dependencies upon clean rather than using

system reference
This commit is contained in:
leandrohw 2017-03-28 10:33:18 -06:00
parent 80c913a851
commit 1f13f73093
2 changed files with 94 additions and 35 deletions

28
pom.xml
View file

@ -30,10 +30,10 @@
</properties>
<modules>
<module>frontend</module>
<module>conversion</module>
<module>dataModels</module>
<module>conversion</module>
<module>backend</module>
<module>frontend</module>
</modules>
<build>
@ -88,30 +88,6 @@
</execution>
</executions>
</plugin>
<!-- Install dependencies to local repository -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-external</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/../lib/libSBOLj-2.1.2-SNAPSHOT-withDependencies.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>org.sbolstandard</groupId>
<artifactId>libSBOLj</artifactId>
<version>2.1.1</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<!-- todo: add any other plugins needed here -->