Name: instantiation/test/java/xmpp-tim/XmppClient/pom.xml 
1:
<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">
2:
  <modelVersion>4.0.0</modelVersion>
3:
  <groupId>org.adventure.messaging</groupId>
4:
  <artifactId>xmpp-client</artifactId>
5:
  <version>0.6.1-SNAPSHOT</version>
6:
  <packaging>jar</packaging>
7:
  <name>XMPP Java Client</name>
8:
  <repositories>
9:
      <repository>
10:
          <id>maven-restlet</id>
11:
          <name>Public online Restlet repository</name>
12:
          <url>http://maven.restlet.org</url>
13:
      </repository>
14:
  </repositories>
15:
  <properties>
16:
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17:
    <maven.compiler.source>1.6</maven.compiler.source>
18:
    <maven.compiler.target>1.6</maven.compiler.target>
19:
  </properties>
20:
  <dependencies>
21:
    <dependency>
22:
      <groupId>org.igniterealtime.smack</groupId>
23:
      <artifactId>smack</artifactId>
24:
      <version>3.2.1</version>
25:
    </dependency>
26:
    <dependency>
27:
      <groupId>org.igniterealtime.smack</groupId>
28:
      <artifactId>smackx</artifactId>
29:
      <version>3.2.1</version>
30:
    </dependency>
31:
    <dependency>
32:
      <groupId>org.igniterealtime.smack</groupId>
33:
      <artifactId>smackx-debug</artifactId>
34:
      <version>3.2.1</version>
35:
    </dependency>
36:
    <dependency>
37:
      <groupId>org.igniterealtime.smack</groupId>
38:
      <artifactId>smackx-jingle</artifactId>
39:
      <version>3.2.1</version>
40:
    </dependency>
41:
    <dependency>
42:
      <groupId>junit</groupId>
43:
      <artifactId>junit</artifactId>
44:
      <version>4.10</version>
45:
      <scope>provided</scope>
46:
    </dependency>
47:
    <dependency>
48:
      <groupId>org.apache.commons</groupId>
49:
      <artifactId>commons-lang3</artifactId>
50:
      <version>3.1</version>
51:
    </dependency>
52:
    <dependency>
53:
          <groupId>org.restlet.jee</groupId>
54:
          <artifactId>org.restlet</artifactId>
55:
          <version>2.1.4</version>
56:
    </dependency>
57:
    <dependency>
58:
          <groupId>org.restlet.jee</groupId>
59:
          <artifactId>org.restlet.ext.servlet</artifactId>
60:
          <version>2.1.4</version>
61:
    </dependency>
62:
  </dependencies>
63:
  <build>
64:
    <sourceDirectory>src</sourceDirectory>
65:
    <directory>target</directory>
66:
    <plugins>
67:
      <plugin>
68:
        <groupId>org.apache.maven.plugins</groupId>
69:
        <artifactId>maven-jar-plugin</artifactId>
70:
        <version>2.4</version>
71:
        <configuration>
72:
          <excludes>
73:
            <exclude>**/tests/</exclude>
74:
          </excludes>
75:
        </configuration>
76:
      </plugin>
77:
      <plugin>
78:
        <groupId>org.apache.maven.plugins</groupId>
79:
        <artifactId>maven-surefire-plugin</artifactId>
80:
        <version>2.12.3</version>
81:
        <configuration>
82:
          <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
83:
          <includes>
84:
            <include>**/*Tests*</include>
85:
          </includes>
86:
        </configuration>
87:
      </plugin>
88:
    </plugins>
89:
  </build>
90:
  <scm>
91:
    <developerConnection>scm:svn:http://fp7-adventure.eu/svn/repos/messaging/javaclient/trunk/XmppClient</developerConnection>
92:
  </scm>
93:
</project>