[IOT-2334][IOT-2335] Fixed presence sample app crash issue
[platform/upstream/iotivity.git] / cloud / stack / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>org.iotivity.cloud</groupId>
5         <artifactId>CloudStack</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7
8         <properties>
9                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10                 <maven.test.skip>true</maven.test.skip>
11         </properties>
12         <dependencies>
13                 <dependency>
14                         <groupId>org.apache.maven.plugins</groupId>
15                         <artifactId>maven-resources-plugin</artifactId>
16                         <version>2.4.3</version>
17                 </dependency>
18                 <dependency>
19                         <groupId>org.apache.maven.plugins</groupId>
20                         <artifactId>maven-compiler-plugin</artifactId>
21                         <version>3.1</version>
22                 </dependency>
23                 <dependency>
24                         <groupId>io.netty</groupId>
25                         <artifactId>netty-all</artifactId>
26                         <version>4.1.1.Final</version>
27                 </dependency>
28                 <dependency>
29                         <groupId>commons-codec</groupId>
30                         <artifactId>commons-codec</artifactId>
31                         <version>1.9</version>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.json</groupId>
35                         <artifactId>json</artifactId>
36                         <version>20140107</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>com.fasterxml.jackson.core</groupId>
40                         <artifactId>jackson-databind</artifactId>
41                         <version>2.4.0</version>
42                 </dependency>
43                 <dependency>
44                         <groupId>com.fasterxml.jackson.dataformat</groupId>
45                         <artifactId>jackson-dataformat-cbor</artifactId>
46                         <version>2.4.0</version>
47                 </dependency>
48                 <dependency>
49                         <groupId>junit</groupId>
50                         <artifactId>junit</artifactId>
51                         <version>4.12</version>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.mockito</groupId>
55                         <artifactId>mockito-all</artifactId>
56                         <version>1.10.19</version>
57                         <scope>test</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>com.jayway.awaitility</groupId>
61                         <artifactId>awaitility</artifactId>
62                         <version>1.7.0</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>log4j</groupId>
66                         <artifactId>log4j</artifactId>
67                         <version>1.2.17</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>javax.websocket</groupId>
71                         <artifactId>javax.websocket-client-api</artifactId>
72                         <version>1.0</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.glassfish.tyrus</groupId>
76                         <artifactId>tyrus-client</artifactId>
77                         <version>1.1</version>
78                 </dependency>
79                 <dependency>
80                         <groupId>org.glassfish.tyrus</groupId>
81                         <artifactId>tyrus-container-grizzly</artifactId>
82                         <version>1.1</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>javax.json</groupId>
86                         <artifactId>javax.json-api</artifactId>
87                         <version>1.0</version>
88                 </dependency>
89                 <dependency>
90                         <groupId>org.glassfish</groupId>
91                         <artifactId>javax.json</artifactId>
92                         <version>1.0.1</version>
93                 </dependency>
94                 <dependency>
95                         <groupId>com.google.code.gson</groupId>
96                         <artifactId>gson</artifactId>
97                         <version>2.8.0</version>
98                 </dependency>
99         </dependencies>
100         <build>
101                 <plugins>
102                         <plugin>
103                                 <inherited>true</inherited>
104                                 <groupId>org.apache.maven.plugins</groupId>
105                                 <artifactId>maven-compiler-plugin</artifactId>
106                                 <configuration>
107                                         <source>1.8</source>
108                                         <target>1.8</target>
109                                         <encoding>UTF-8</encoding>
110                                 </configuration>
111                         </plugin>
112                 </plugins>
113         </build>
114 </project>