diff options
Diffstat (limited to 'EssentialsXMPP/pom.xml')
-rw-r--r-- | EssentialsXMPP/pom.xml | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/EssentialsXMPP/pom.xml b/EssentialsXMPP/pom.xml new file mode 100644 index 000000000..36d47d7a2 --- /dev/null +++ b/EssentialsXMPP/pom.xml @@ -0,0 +1,82 @@ +<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> + + <parent> + <groupId>net.ess3</groupId> + <artifactId>EssentialsParent</artifactId> + <version>2.x-SNAPSHOT</version> + </parent> + + <artifactId>EssentialsXMPP</artifactId> + + <url>http://ess3.net/</url> + + <organization> + <name>Essentials Team</name> + <url>http://ess3.net/</url> + </organization> + + <licenses> + <license> + <name>GPLv3</name> + <url>http://www.gnu.org/copyleft/gpl.html</url> + </license> + </licenses> + + <scm> + <connection>scm:git:https://github.com/essentials/Essentials.git</connection> + <developerConnection>scm:git:https://github.com/essentials/Essentials.git</developerConnection> + <url>https://github.com/essentials/Essentials</url> + </scm> + + <issueManagement> + <system>JIRA</system> + <url>http://essentials3.atlassian.net</url> + </issueManagement> + + <ciManagement> + <system>TeamCity</system> + <url>http://ci.ess3.net/</url> + </ciManagement> + + <dependencies> + <dependency> + <groupId>net.ess3</groupId> + <artifactId>Essentials</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.igniterealtime.smack</groupId> + <artifactId>smack</artifactId> + <version>3.2.1</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>2.1</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + </execution> + </executions> + <configuration> + <artifactSet> + <includes> + <include>org.igniterealtime.smack:smack</include> + </includes> + </artifactSet> + </configuration> + </plugin> + </plugins> + </build> + +</project>
\ No newline at end of file |