2015-07-20 20:02:11 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-03-02 01:46:32 +01: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2017-03-02 01:09:25 +01:00
|
|
|
<groupId>com.github.steveice10</groupId>
|
2014-03-02 01:46:32 +01:00
|
|
|
<artifactId>opennbt</artifactId>
|
2017-03-02 01:14:16 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2014-03-02 01:46:32 +01:00
|
|
|
<packaging>jar</packaging>
|
2012-03-21 04:27:22 +01:00
|
|
|
|
2014-03-02 01:46:32 +01:00
|
|
|
<name>OpenNBT</name>
|
|
|
|
<description>A library for reading and writing NBT files, written in Java.</description>
|
|
|
|
<url>http://github.com/Steveice10/OpenNBT/</url>
|
2012-03-12 05:29:54 +01:00
|
|
|
|
2015-07-20 20:02:11 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:Steveice10/OpenNBT.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:Steveice10/OpenNBT.git</developerConnection>
|
|
|
|
<url>http://github.com/Steveice10/OpenNBT/</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2014-03-02 01:46:32 +01:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2012-03-12 05:29:54 +01:00
|
|
|
|
2015-07-20 20:02:11 +02:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>steveice10</id>
|
|
|
|
<name>Steveice10</name>
|
|
|
|
<email>Steveice10@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2012-03-12 05:29:54 +01:00
|
|
|
|
2014-03-02 01:46:32 +01:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2017-03-02 01:09:25 +01:00
|
|
|
<version>3.6.1</version>
|
2015-07-20 20:02:11 +02:00
|
|
|
<configuration>
|
2017-03-02 01:09:25 +01:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2015-07-20 20:02:11 +02:00
|
|
|
</configuration>
|
2014-03-02 01:46:32 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2017-03-02 01:09:25 +01:00
|
|
|
<version>3.0.2</version>
|
2015-07-20 20:02:11 +02:00
|
|
|
</plugin>
|
2016-12-16 01:52:22 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2017-03-02 01:09:25 +01:00
|
|
|
<version>3.0.1</version>
|
2016-12-16 01:52:22 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2017-03-02 01:09:25 +01:00
|
|
|
<version>2.10.4</version>
|
2016-12-16 01:52:22 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-07-20 20:02:11 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2017-03-02 01:09:25 +01:00
|
|
|
<version>2.4.3</version>
|
2015-07-20 20:02:11 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
2014-03-02 01:46:32 +01:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-03-12 05:29:54 +01:00
|
|
|
</project>
|