mirror of
https://github.com/Maschell/JNUSLibDecryptor.git
synced 2024-11-01 02:35:08 +01:00
103 lines
2.5 KiB
XML
103 lines
2.5 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>de.mas</groupId>
|
|
<artifactId>jnuslibdecryptor</artifactId>
|
|
<version>0.1</version>
|
|
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>normal-build</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<properties>
|
|
<jar_dir>./target</jar_dir>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>ci-build</id>
|
|
<activation>
|
|
<property>
|
|
<name>ci-build</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<jar_dir>./ci</jar_dir>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.7.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>de.mas.jnuslib.decryptor.Main</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<!-- Stick jar in root dir, if you want -->
|
|
<outputDirectory>${jar_dir}</outputDirectory>
|
|
<finalName>JNUSLibDecryptor-${project.version}-nightly</finalName>
|
|
</configuration>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attached</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jitpack.io</id> <!-- JitPack allows github repo to be used as a maven repo -->
|
|
<url>https://jitpack.io</url> <!-- For documentation: http://jitpack.io/ -->
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.Maschell</groupId>
|
|
<artifactId>JNUSLib</artifactId>
|
|
<version> 3eb299d </version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|