SpecialSource/pom.xml

151 lines
5.4 KiB
XML
Raw Normal View History

2013-04-20 02:07:55 +00:00
<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">
2012-11-27 12:02:36 +00:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
2014-09-13 10:33:12 +00:00
<version>9</version>
2012-11-27 12:02:36 +00:00
</parent>
<groupId>net.md-5</groupId>
<artifactId>SpecialSource</artifactId>
<version>1.10.0</version>
2012-11-27 12:02:36 +00:00
<packaging>jar</packaging>
<name>SpecialSource</name>
<description>A jar compare and renaming engine designed for comparing and remapping 2 jars of differnent obfuscation mappings. Can also be useful for reobfuscation.</description>
<url>https://github.com/md-5/SpecialSource</url>
<inceptionYear>2012</inceptionYear>
<licenses>
<license>
<name>The BSD 3-Clause License</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:md-5/SpecialSource.git</connection>
<developerConnection>scm:git:git@github.com:md-5/SpecialSource.git</developerConnection>
<url>git@github.com:md-5/SpecialSource.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/md-5/SpecialSource/issues</url>
</issueManagement>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2012-11-27 12:02:36 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
2017-10-13 11:11:26 +00:00
<artifactId>asm-commons</artifactId>
2021-03-11 07:59:58 +00:00
<version>9.1</version>
<scope>compile</scope>
2012-11-27 12:02:36 +00:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2018-12-05 22:52:03 +00:00
<version>1.18.4</version>
2012-11-27 12:02:36 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>4.9</version>
<scope>compile</scope>
</dependency>
2013-01-27 21:10:33 +00:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
2013-01-27 21:10:33 +00:00
<scope>compile</scope>
</dependency>
2013-02-21 03:42:40 +00:00
<dependency>
2018-12-05 22:52:03 +00:00
<groupId>com.opencsv</groupId>
2013-02-21 03:42:40 +00:00
<artifactId>opencsv</artifactId>
2018-12-05 22:52:03 +00:00
<version>4.4</version>
2013-02-21 03:42:40 +00:00
<scope>compile</scope>
</dependency>
2012-11-27 12:02:36 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<executions>
<execution>
<phase>clean</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
<configuration>
<strictCheck>true</strictCheck>
<header>${basedir}/LICENSE</header>
<includes>
<include>src/**</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
2018-12-05 22:52:03 +00:00
<version>3.1.0</version>
2012-11-27 12:02:36 +00:00
<configuration>
<archive>
<manifestEntries>
2014-09-13 10:33:12 +00:00
<Main-Class>net.md_5.specialsource.SpecialSource</Main-Class>
2012-11-27 12:02:36 +00:00
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2018-12-05 23:59:15 +00:00
<version>3.1.1</version>
2012-11-27 12:02:36 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<minimizeJar>true</minimizeJar>
<shadedArtifactAttached>true</shadedArtifactAttached>
2012-11-27 12:02:36 +00:00
</configuration>
</plugin>
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
<version>0.8</version>
<executions>
<execution>
<goals>
<goal>strip-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
2012-11-27 12:02:36 +00:00
</plugins>
</build>
</project>