1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-02 00:41:42 +00:00

Added local KickAss.jar and installing it into local MVN repository.

This commit is contained in:
jespergravgaard 2018-02-12 21:58:10 +01:00
parent 52dd6035a0
commit 1611442349
2 changed files with 24 additions and 0 deletions

BIN
dependencies/KickAss-4.19.jar vendored Normal file

Binary file not shown.

24
pom.xml
View File

@ -29,6 +29,7 @@
<version>4.19</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
@ -59,7 +60,30 @@
<argLine>-Xmx1024m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<groupId>cml.kickass</groupId>
<artifactId>kickassembler</artifactId>
<version>4.19</version>
<packaging>jar</packaging>
<file>${basedir}/dependencies/KickAss-4.19.jar</file>
<generatePom>true</generatePom>
</configuration>
<executions>
<execution>
<id>install-jar-lib</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>