]> wirehaze git hosting - axolotl.git/blob - client/pom.xml

wirehaze git hosting

Use method reference instead of anonymous inner class in Main.main()
[axolotl.git] / client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <artifactId>axolotl</artifactId>
8 <groupId>ovh.wirehaze.axolotl</groupId>
9 <version>0.0.1-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>client</artifactId>
13
14 <name>client</name>
15
16 <dependencies>
17 <dependency>
18 <groupId>org.igniterealtime.smack</groupId>
19 <artifactId>smack-core</artifactId>
20 <version>4.4.8</version>
21 </dependency>
22 <dependency>
23 <groupId>org.igniterealtime.smack</groupId>
24 <artifactId>smack-tcp</artifactId>
25 <version>4.4.8</version>
26 </dependency>
27 <dependency>
28 <groupId>org.igniterealtime.smack</groupId>
29 <artifactId>smack-im</artifactId>
30 <version>4.4.8</version>
31 </dependency>
32 <dependency>
33 <groupId>org.junit.jupiter</groupId>
34 <artifactId>junit-jupiter</artifactId>
35 <version>${junit.version}</version>
36 <scope>test</scope>
37 </dependency>
38 </dependencies>
39 </project>