113 lines
4.1 KiB
XML
113 lines
4.1 KiB
XML
<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>
|
|
<artifactId>libraries-server</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>libraries-server</name>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>${eclipse.paho.client.mqttv3.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>${assertj.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>${jetty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlet</artifactId>
|
|
<version>${jetty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-webapp</artifactId>
|
|
<version>${jetty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>${httpclient.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>${netty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- tomcat -->
|
|
<dependency>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-catalina</artifactId>
|
|
<version>${tomcat.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-tcp</artifactId>
|
|
<version>${smack.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-im</artifactId>
|
|
<version>${smack.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-extensions</artifactId>
|
|
<version>${smack.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
<artifactId>smack-java7</artifactId>
|
|
<version>${smack.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<assertj.version>3.6.2</assertj.version>
|
|
<httpclient.version>4.5.3</httpclient.version>
|
|
<commons.io.version>2.5</commons.io.version>
|
|
<jetty.version>9.4.8.v20171121</jetty.version>
|
|
<netty.version>4.1.20.Final</netty.version>
|
|
<commons.collections.version>4.1</commons.collections.version>
|
|
<tomcat.version>8.5.24</tomcat.version>
|
|
<smack.version>4.3.1</smack.version>
|
|
<eclipse.paho.client.mqttv3.version>1.2.0</eclipse.paho.client.mqttv3.version>
|
|
</properties>
|
|
|
|
</project> |