2011-01-01 20:37:52 +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>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
2011-02-15 22:35:47 +01:00
|
|
|
<packaging>jar</packaging>
|
2011-01-01 20:37:52 +01:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>CraftBukkit</name>
|
|
|
|
<url>http://www.bukkit.org</url>
|
2011-01-20 22:21:30 +01:00
|
|
|
<properties>
|
2011-03-12 14:57:30 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2011-02-15 00:36:00 +01:00
|
|
|
<api.version>unknown</api.version>
|
2011-01-20 22:21:30 +01:00
|
|
|
</properties>
|
2011-02-15 00:36:00 +01:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/Bukkit/CraftBukkit.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/Bukkit/CraftBukkit.git</developerConnection>
|
|
|
|
<url>https://github.com/Bukkit/CraftBukkit</url>
|
|
|
|
</scm>
|
2011-01-01 20:37:52 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2011-02-15 00:36:00 +01:00
|
|
|
<id>bukkit-repo</id>
|
2011-02-21 00:37:09 +01:00
|
|
|
<url>http://repo.bukkit.org/artifactory/repo</url>
|
2011-01-01 20:37:52 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2011-02-15 22:35:47 +01:00
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>bukkit-plugins</id>
|
2011-02-21 00:37:09 +01:00
|
|
|
<url>http://repo.bukkit.org/artifactory/plugins-release</url>
|
2011-02-15 22:35:47 +01:00
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2011-01-01 20:37:52 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>minecraft-server</artifactId>
|
2011-05-28 22:50:08 +02:00
|
|
|
<version>1.6.5</version>
|
2011-01-01 20:37:52 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-01-04 01:43:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jopt-simple</groupId>
|
|
|
|
<artifactId>jopt-simple</artifactId>
|
|
|
|
<version>3.2</version>
|
2011-04-20 19:11:22 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
2011-01-04 01:43:23 +01:00
|
|
|
</dependency>
|
2011-02-25 17:12:38 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
<version>0.9.94</version>
|
2011-04-20 19:11:22 +02:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.7.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>5.1.14</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.avaje</groupId>
|
|
|
|
<artifactId>ebean</artifactId>
|
|
|
|
<version>2.7.3</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
2011-04-05 17:42:40 +02:00
|
|
|
</dependency>
|
2011-01-01 20:37:52 +01:00
|
|
|
</dependencies>
|
|
|
|
<!-- This builds a completely 'ready to start' jar with all dependencies inside -->
|
|
|
|
<build>
|
2011-02-15 22:35:47 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2011-01-01 20:37:52 +01:00
|
|
|
<plugins>
|
2011-02-15 22:35:47 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.lukegb.mojo</groupId>
|
|
|
|
<artifactId>gitdescribe-maven-plugin</artifactId>
|
2011-02-19 15:36:07 +01:00
|
|
|
<version>1.3</version>
|
2011-02-15 22:35:47 +01:00
|
|
|
<configuration>
|
|
|
|
<outputPrefix>git-Bukkit-</outputPrefix>
|
|
|
|
<outputPostfix></outputPostfix>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>gitdescribe</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-02-08 23:46:48 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
|
|
|
|
<Implementation-Title>CraftBukkit</Implementation-Title>
|
2011-02-15 22:35:47 +01:00
|
|
|
<Implementation-Version>${describe}</Implementation-Version>
|
2011-02-08 23:46:48 +01:00
|
|
|
<Implementation-Vendor>Bukkit Team</Implementation-Vendor>
|
|
|
|
<Specification-Title>Bukkit</Specification-Title>
|
|
|
|
<Specification-Version>${api.version}</Specification-Version>
|
|
|
|
<Specification-Vendor>Bukkit Team</Specification-Vendor>
|
2011-02-25 17:15:37 +01:00
|
|
|
<Sealed>true</Sealed>
|
2011-02-08 23:46:48 +01:00
|
|
|
</manifestEntries>
|
|
|
|
<manifestSections>
|
|
|
|
<manifestSection>
|
|
|
|
<name>net/bukkit/</name>
|
|
|
|
<manifestEntries>
|
2011-02-25 17:15:37 +01:00
|
|
|
<Sealed>true</Sealed>
|
2011-02-08 23:46:48 +01:00
|
|
|
</manifestEntries>
|
|
|
|
</manifestSection>
|
|
|
|
<manifestSection>
|
|
|
|
<name>com/bukkit/</name>
|
|
|
|
<manifestEntries>
|
2011-02-25 17:15:37 +01:00
|
|
|
<Sealed>true</Sealed>
|
2011-02-08 23:46:48 +01:00
|
|
|
</manifestEntries>
|
|
|
|
</manifestSection>
|
|
|
|
<manifestSection>
|
|
|
|
<name>org/bukkit/</name>
|
|
|
|
<manifestEntries>
|
2011-02-25 17:15:37 +01:00
|
|
|
<Sealed>true</Sealed>
|
2011-02-08 23:46:48 +01:00
|
|
|
</manifestEntries>
|
|
|
|
</manifestSection>
|
|
|
|
</manifestSections>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-01-01 20:37:52 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2011-04-20 19:11:22 +02:00
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>junit:junit</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
2011-01-01 20:37:52 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2011-01-01 20:47:04 +01:00
|
|
|
<version>2.0.2</version>
|
2011-01-01 20:37:52 +01:00
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2011-02-15 00:36:00 +01:00
|
|
|
</project>
|
2011-04-20 19:11:22 +02:00
|
|
|
|