Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / cloud / account / 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>CloudAccount</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
13         <dependencies>
14                 <dependency>
15                         <groupId>org.iotivity.cloud</groupId>
16                         <artifactId>CloudStack</artifactId>
17                         <version>0.0.1-SNAPSHOT</version>
18                 </dependency>
19                 <dependency>
20                         <groupId>org.mongodb</groupId>
21                         <artifactId>mongo-java-driver</artifactId>
22                         <version>3.2.0</version>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.apache.oltu.oauth2</groupId>
26                         <artifactId>org.apache.oltu.oauth2.client</artifactId>
27                         <version>1.0.1</version>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.apache.oltu.oauth2</groupId>
31                         <artifactId>
32                                 org.apache.oltu.oauth2.common
33                         </artifactId>
34                         <version>1.0.1</version>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.apache.oltu.oauth2</groupId>
38                         <artifactId>
39                                 org.apache.oltu.oauth2.authzserver
40                         </artifactId>
41                         <version>1.0.1</version>
42                 </dependency>
43                 <dependency>
44                         <groupId>junit</groupId>
45                         <artifactId>junit</artifactId>
46                         <version>4.12</version>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.mockito</groupId>
50                         <artifactId>mockito-all</artifactId>
51                         <version>1.10.19</version>
52                         <scope>test</scope>
53                 </dependency>
54                 <dependency>
55                         <groupId>com.jayway.awaitility</groupId>
56                         <artifactId>awaitility</artifactId>
57                         <version>1.7.0</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.powermock</groupId>
61                         <artifactId>powermock-api-mockito</artifactId>
62                         <version>1.6.5</version>
63                         <scope>test</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.powermock</groupId>
67                         <artifactId>powermock-core</artifactId>
68                         <version>1.6.5</version>
69                         <scope>test</scope>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.powermock</groupId>
73                         <artifactId>powermock-module-junit4</artifactId>
74                         <version>1.6.5</version>
75                         <scope>test</scope>
76                 </dependency>
77
78                 <!-- For security tasks(certificates, signature, keystore) -->
79                 <dependency>
80                         <groupId>org.bouncycastle</groupId>
81                         <artifactId>bcprov-jdk15on</artifactId>
82                         <version>1.54</version>
83                 </dependency>
84
85                 <dependency>
86                         <groupId>org.bouncycastle</groupId>
87                         <artifactId>bcpkix-jdk15on</artifactId>
88                         <version>1.54</version>
89                 </dependency>
90                 <!-- For security tasks(certificates, signature, keystore) -->
91
92         </dependencies>
93
94         <build>
95                 <plugins>
96                         <plugin>
97                                 <inherited>true</inherited>
98                                 <groupId>org.apache.maven.plugins</groupId>
99                                 <artifactId>maven-compiler-plugin</artifactId>
100                                 <configuration>
101                                         <source>1.8</source>
102                                         <target>1.8</target>
103                                         <encoding>UTF-8</encoding>
104                                 </configuration>
105                         </plugin>
106                         <plugin>
107                                 <groupId>org.apache.maven.plugins</groupId>
108                                 <artifactId>maven-jar-plugin</artifactId>
109                                 <configuration>
110                                         <archive>
111                                                 <manifest>
112                                                         <mainClass>org.iotivity.cloud.accountserver.AccountServer</mainClass>
113                                                         <addClasspath>true</addClasspath>
114                                                         <classpathPrefix>lib/</classpathPrefix>
115                                                 </manifest>
116                                         </archive>
117                                 </configuration>
118                         </plugin>
119                         <plugin>
120                                 <groupId>org.apache.maven.plugins</groupId>
121                                 <artifactId>maven-dependency-plugin</artifactId>
122                                 <executions>
123                                         <execution>
124                                                 <id>copy-dependencies</id>
125                                                 <phase>package</phase>
126                                                 <goals>
127                                                         <goal>copy-dependencies</goal>
128                                                 </goals>
129                                         </execution>
130                                 </executions>
131                                 <configuration>
132                                         <outputDirectory>target/lib</outputDirectory>
133                                         <overWriteIfNewer>true</overWriteIfNewer>
134                                 </configuration>
135                         </plugin>
136                 </plugins>
137         </build>
138
139 </project>