SpecialSource/pom.xml

136 lines
4.8 KiB
XML
Raw Normal View History

<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>
<version>7</version>
</parent>
<groupId>net.md-5</groupId>
<artifactId>SpecialSource</artifactId>
<version>1.3-SNAPSHOT</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>
<developers>
<developer>
<id>md_5</id>
<name>Michael Dardis</name>
<email>md_5@live.com.au</email>
<timezone>+10</timezone>
</developer>
</developers>
<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>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2013-01-22 03:21:02 +00:00
<main.class>net.md_5.specialsource.SpecialSource</main.class>
2012-11-27 12:02:36 +00:00
</properties>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>4.1</version>
<scope>compile</scope>
2012-11-27 12:02:36 +00:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>0.11.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>3.2</version>
<type>jar</type>
<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-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
2012-12-08 23:29:04 +00:00
<source>1.6</source>
<target>1.6</target>
2012-11-27 12:02:36 +00:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestEntries>
<Main-Class>${main.class}</Main-Class>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<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>
</plugins>
</build>
</project>