removed the last maven warnings

* used maven-install-plugin to install dependencies, that are not available via a public repository, to the local maven repository
master
Stefan Dollase 2015-12-20 00:24:18 +01:00
parent 7ec22caa32
commit e0a6576631
1 changed files with 44 additions and 9 deletions

53
pom.xml
View File

@ -13,6 +13,45 @@
<build>
<finalName>${final.name}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-jnbt</id>
<phase>clean</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${basedir}/lib/JNBT_1.3.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>jnbt</groupId>
<artifactId>jnbt</artifactId>
<version>1.3</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>
<id>install-jgoogleanalytics</id>
<phase>clean</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${basedir}/lib/JGoogleAnalytics_0.4.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>com.boxysystems</groupId>
<artifactId>jgoogleanalytics</artifactId>
<version>0.4</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
@ -66,13 +105,6 @@
<artifactId>gson</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.boxysystems</groupId>
<artifactId>jgoogleanalytics</artifactId>
<version>0.4</version>
<systemPath>${project.basedir}/lib/JGoogleAnalytics_0.4.jar</systemPath>
<scope>system</scope>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-swing</artifactId>
@ -87,8 +119,11 @@
<groupId>jnbt</groupId>
<artifactId>jnbt</artifactId>
<version>1.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/JNBT_1.3.jar</systemPath>
</dependency>
<dependency>
<groupId>com.boxysystems</groupId>
<artifactId>jgoogleanalytics</artifactId>
<version>0.4</version>
</dependency>
</dependencies>
</project>