|
|
|
@ -2,12 +2,38 @@ |
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<parent> |
|
|
|
|
<groupId>dev.openrs2</groupId> |
|
|
|
|
<artifactId>openrs2-parent</artifactId> |
|
|
|
|
<version>1.0.0-SNAPSHOT</version> |
|
|
|
|
</parent> |
|
|
|
|
|
|
|
|
|
<artifactId>fernflower</artifactId> |
|
|
|
|
<version>1.0.0-SNAPSHOT</version> |
|
|
|
|
<packaging>jar</packaging> |
|
|
|
|
|
|
|
|
|
<name>Fernflower</name> |
|
|
|
|
<description>Fork of the Fernflower Java decompiler.</description> |
|
|
|
|
<licenses> |
|
|
|
|
<license> |
|
|
|
|
<name>Apache License v2.0</name> |
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
|
|
|
|
</license> |
|
|
|
|
</licenses> |
|
|
|
|
|
|
|
|
|
<scm> |
|
|
|
|
<connection>scm:git:https://git.openrs2.dev/openrs2/fernflower.git</connection> |
|
|
|
|
<developerConnection>scm:git:git@git.openrs2.dev:openrs2/fernflower.git</developerConnection> |
|
|
|
|
<url>https://git.openrs2.dev/openrs2/fernflower</url> |
|
|
|
|
</scm> |
|
|
|
|
<issueManagement> |
|
|
|
|
<system>Gitea</system> |
|
|
|
|
<url>https://git.openrs2.dev/openrs2/fernflower/issues</url> |
|
|
|
|
</issueManagement> |
|
|
|
|
<ciManagement> |
|
|
|
|
<system>Jenkins</system> |
|
|
|
|
<url>https://build.openrs2.dev/job/fernflower/</url> |
|
|
|
|
</ciManagement> |
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
@ -24,6 +50,31 @@ |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
<repositories> |
|
|
|
|
<repository> |
|
|
|
|
<id>openrs2</id> |
|
|
|
|
<name>OpenRS2</name> |
|
|
|
|
<url>https://repo.openrs2.dev/repository/openrs2/</url> |
|
|
|
|
<releases> |
|
|
|
|
<enabled>true</enabled> |
|
|
|
|
</releases> |
|
|
|
|
<snapshots> |
|
|
|
|
<enabled>false</enabled> |
|
|
|
|
</snapshots> |
|
|
|
|
</repository> |
|
|
|
|
<repository> |
|
|
|
|
<id>openrs2-snapshots</id> |
|
|
|
|
<name>OpenRS2 Snapshots</name> |
|
|
|
|
<url>https://repo.openrs2.dev/repository/openrs2-snapshots/</url> |
|
|
|
|
<releases> |
|
|
|
|
<enabled>false</enabled> |
|
|
|
|
</releases> |
|
|
|
|
<snapshots> |
|
|
|
|
<enabled>true</enabled> |
|
|
|
|
</snapshots> |
|
|
|
|
</repository> |
|
|
|
|
</repositories> |
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
<sourceDirectory>${project.basedir}/src</sourceDirectory> |
|
|
|
|
<testSourceDirectory>${project.basedir}/test</testSourceDirectory> |
|
|
|
@ -31,7 +82,6 @@ |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
<version>3.8.0</version> |
|
|
|
|
<configuration> |
|
|
|
|
<source>1.8</source> |
|
|
|
|
<target>1.8</target> |
|
|
|
@ -40,7 +90,6 @@ |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId> |
|
|
|
|
<version>2.22.2</version> |
|
|
|
|
<configuration> |
|
|
|
|
<skipTests>true</skipTests> |
|
|
|
|
</configuration> |
|
|
|
|