mirror of
https://github.com/nikdoof/bukkitxmpp.git
synced 2025-12-13 01:32:16 +00:00
100 lines
2.8 KiB
XML
100 lines
2.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>bukkitxmpp</groupId>
|
|
<artifactId>bukkitxmpp</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
<name>BukkitXMPP</name>
|
|
<url>http://github.com/nikdoof/bukkitxmpp/</url>
|
|
<issueManagement>
|
|
<system>Github</system>
|
|
<url>http://github.com/nikdoof/bukkitxmpp/issues</url>
|
|
</issueManagement>
|
|
<ciManagement>
|
|
<system>Jenkins</system>
|
|
<url>http://ci.tensixtyone.com/</url>
|
|
</ciManagement>
|
|
<scm>
|
|
<url>git://github.com/nikdoof/bukkitxmpp.git</url>
|
|
</scm>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jivesoftware</groupId>
|
|
<artifactId>smack</artifactId>
|
|
<version>3.2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jivesoftware</groupId>
|
|
<artifactId>smackx</artifactId>
|
|
<version>3.2.1</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Implementation-Title>BukkitXMPP</Implementation-Title>
|
|
<Implementation-Version>${describe}</Implementation-Version>
|
|
<Implementation-Vendor>Matalok</Implementation-Vendor>
|
|
<Sealed>true</Sealed>
|
|
</manifestEntries>
|
|
<manifestSections>
|
|
<manifestSection>
|
|
<name>com/pleaseignore/BukkitXMPP/</name>
|
|
<manifestEntries>
|
|
<Sealed>true</Sealed>
|
|
</manifestEntries>
|
|
</manifestSection>
|
|
</manifestSections>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<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>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>jivesoftware:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
</resources>
|
|
</build>
|
|
</project>
|