Skip to content

Commit

Permalink
Updated pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Boreeas committed Aug 18, 2014
1 parent f9943a3 commit f816f64
Showing 1 changed file with 46 additions and 37 deletions.
83 changes: 46 additions & 37 deletions xmpp/pom.xml
Original file line number Diff line number Diff line change
@@ -1,39 +1,48 @@
<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.boreeas</groupId>
<artifactId>riotapi</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>xmpp</artifactId>
<name>XmppWrapper</name>
<description>An xmpp wrapper for riot</description>
<dependencies>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-core</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.4c</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-tcp</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-debug</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-extensions</artifactId>
<version>4.0.2</version>
</dependency>
</dependencies>
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.boreeas</groupId>
<artifactId>riotapi</artifactId>
<version>1.0.0</version>
</parent>

<artifactId>riotapi.xmpp</artifactId>
<name>XmppWrapper</name>
<description>An xmpp wrapper for riot</description>

<dependencies>
<dependency>
<groupId>net.boreeas</groupId>
<artifactId>riotapi.domain</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>


<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-core</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.4c</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-tcp</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-debug</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.igniterealtime.smack</groupId>
<artifactId>smack-extensions</artifactId>
<version>4.0.2</version>
</dependency>
</dependencies>
</project>

0 comments on commit f816f64

Please sign in to comment.