Fixes for pom warnings
[policy/engine.git] / POLICY-SDK-APP / 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         <parent>
5                 <groupId>org.onap.policy.engine</groupId>
6                 <artifactId>PolicyEngineSuite</artifactId>
7                 <version>1.1.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>POLICY-SDK-APP</artifactId>
10         <packaging>war</packaging>
11         <build>
12                 <plugins>
13                         <plugin>
14                                 <artifactId>maven-war-plugin</artifactId>
15                                 <version>2.1</version>
16                                 <configuration>
17                                         <attachClasses>true</attachClasses>
18                                         <!-- <warSourceDirectory>WebContent</warSourceDirectory> -->
19                                         <failOnMissingWebXml>false</failOnMissingWebXml>
20                                 </configuration>
21                         </plugin>
22                         <plugin>
23                                 <artifactId>maven-compiler-plugin</artifactId>
24                                 <version>3.2</version>
25                                 <configuration>
26                                         <source>1.8</source>
27                                         <target>1.8</target>
28                                 </configuration>
29                         </plugin>
30                         <plugin>
31                                 <groupId>org.apache.maven.plugins</groupId>
32                                 <artifactId>maven-surefire-plugin</artifactId>
33                                 <configuration>
34                                         <skipTests>${skiptests}</skipTests>
35                                         <includes>
36                                                 <include>**/Test*.java</include>
37                                                 <include>**/*Test.java</include>
38                                                 <include>**/*TestCase.java</include>
39                                         </includes>
40                                         <additionalClasspathElements>
41                                                 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
42                                         </additionalClasspathElements>
43                                         <systemPropertyVariables>
44                                                 <container.classpath>classpath:</container.classpath>
45                                         </systemPropertyVariables>
46                                 </configuration>
47                         </plugin>
48                 </plugins>
49         </build>
50         <properties>
51                 <encoding>UTF-8</encoding>
52                 <epsdk.version>1.1.0</epsdk.version>
53                 <springframework.version>4.2.0.RELEASE</springframework.version>
54                 <hibernate.version>4.3.11.Final</hibernate.version>
55                 <skipassembly>true</skipassembly>
56                 <skiptests>false</skiptests>
57                 <jackson.version>2.6.0</jackson.version>
58         </properties>
59         <dependencies>
60                 <dependency>
61                         <groupId>org.openecomp.ecompsdkos</groupId>
62                         <artifactId>epsdk-core</artifactId>
63                         <version>${epsdk.version}</version>
64                 </dependency>
65         <!-- Spring -->
66                 <dependency>
67                         <groupId>org.springframework</groupId>
68                         <artifactId>spring-core</artifactId>
69                         <version>${springframework.version}</version>
70                         <exclusions>
71                                 <exclusion>
72                                         <groupId>commons-logging</groupId>
73                                         <artifactId>commons-logging</artifactId>
74                                 </exclusion>
75                         </exclusions>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.springframework</groupId>
79                         <artifactId>spring-test</artifactId>
80                         <version>${springframework.version}</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>org.springframework</groupId>
84                         <artifactId>spring-web</artifactId>
85                         <version>${springframework.version}</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.springframework</groupId>
89                         <artifactId>spring-webmvc</artifactId>
90                         <version>${springframework.version}</version>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.springframework</groupId>
94                         <artifactId>spring-tx</artifactId>
95                         <version>${springframework.version}</version>
96                 </dependency>
97                 <dependency>
98                         <groupId>org.springframework</groupId>
99                         <artifactId>spring-context-support</artifactId>
100                         <version>${springframework.version}</version>
101                 </dependency>
102                 <!-- Hibernate -->
103                 <dependency>
104                         <groupId>org.hibernate</groupId>
105                         <artifactId>hibernate-core</artifactId>
106                         <version>${hibernate.version}</version>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.hibernate</groupId>
110                         <artifactId>hibernate-validator</artifactId>
111                         <version>5.1.3.Final</version>
112                 </dependency>
113                 <!-- Javax Mail -->
114                 <dependency>
115                         <groupId>javax.mail</groupId>
116                         <artifactId>mail</artifactId>
117                         <version>1.4.7</version>
118                 </dependency>
119                         <!-- Mapper -->
120                 <dependency>
121                         <groupId>com.fasterxml.jackson.core</groupId>
122                         <artifactId>jackson-annotations</artifactId>
123                         <version>2.6.3</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>com.fasterxml.jackson.core</groupId>
127                         <artifactId>jackson-core</artifactId>
128                         <version>2.6.3</version>
129                 </dependency>
130                 <dependency>
131                         <groupId>com.fasterxml.jackson.core</groupId>
132                         <artifactId>jackson-databind</artifactId>
133                         <version>2.6.3</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>com.fasterxml.jackson.module</groupId>
137                         <artifactId>jackson-module-jaxb-annotations</artifactId>
138                         <version>${jackson.version}</version>
139                 </dependency>
140                 <dependency>
141                         <groupId>com.fasterxml.jackson.module</groupId>
142                         <artifactId>jackson-module-jsonSchema</artifactId>
143                         <version>${jackson.version}</version>
144                 </dependency>
145                 <dependency>
146                         <groupId>com.fasterxml.jackson.dataformat</groupId>
147                         <artifactId>jackson-dataformat-xml</artifactId>
148                         <version>${jackson.version}</version>
149                 </dependency>
150                 <!-- Elastic Search -->
151                 <dependency>
152                         <groupId>org.elasticsearch</groupId>
153                         <artifactId>elasticsearch</artifactId>
154                         <version>2.2.0</version>
155                 </dependency>
156                 <dependency>
157                         <groupId>org.json</groupId>
158                         <artifactId>json</artifactId>
159                         <version>20160212</version>
160                 </dependency>
161                 <dependency>
162                         <groupId>io.searchbox</groupId>
163                         <artifactId>jest</artifactId>
164                         <version>2.0.0</version>
165                         <exclusions>
166                                 <exclusion>
167                                         <groupId>commons-logging</groupId>
168                                         <artifactId>commons-logging</artifactId>
169                                 </exclusion>
170                         </exclusions>
171                 </dependency>
172                 <dependency>
173                         <groupId>org.onap.policy.engine</groupId>
174                         <artifactId>ONAP-PDP</artifactId>
175                         <version>${project.version}</version>
176                         <exclusions>
177                                 <exclusion>
178                                         <groupId>commons-logging</groupId>
179                                         <artifactId>commons-logging</artifactId>
180                                 </exclusion>
181                                 <exclusion>
182                                         <groupId>org.apache.httpcomponents</groupId>
183                                         <artifactId>httpcore</artifactId>
184                                 </exclusion>
185                                 <exclusion>
186                                         <groupId>com.att.aft</groupId>
187                                 <artifactId>dme2</artifactId>
188                                 </exclusion>
189                         </exclusions>
190                 </dependency>
191                 <dependency>
192                         <groupId>commons-fileupload</groupId>
193                         <artifactId>commons-fileupload</artifactId>
194                         <version>1.3.1</version>
195                 </dependency>
196                 <dependency>
197                         <groupId>org.apache.commons</groupId>
198                         <artifactId>commons-compress</artifactId>
199                         <version>1.8</version>
200                 </dependency>
201                 <dependency>
202                         <groupId>args4j</groupId>
203                         <artifactId>args4j</artifactId>
204                         <version>2.32</version>
205                 </dependency>
206                 <dependency>
207                 <groupId>org.apache.poi</groupId>
208                 <artifactId>poi</artifactId>
209                 <version>3.15</version>
210                 </dependency>
211                 <dependency>
212                         <groupId>org.apache.poi</groupId>
213                         <artifactId>poi-ooxml</artifactId>
214                         <version>3.15</version>
215                 </dependency>
216                 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
217                 <dependency>
218                     <groupId>com.esotericsoftware.yamlbeans</groupId>
219                     <artifactId>yamlbeans</artifactId>
220                     <version>1.08</version>
221                 </dependency>           
222                 <!-- https://mvnrepository.com/artifact/org.easymock/easymock -->
223                 <dependency>
224                     <groupId>org.easymock</groupId>
225                     <artifactId>easymock</artifactId>
226                     <version>3.1</version>
227                 </dependency>   
228                 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
229                 <dependency>
230                     <groupId>org.yaml</groupId>
231                     <artifactId>snakeyaml</artifactId>
232                     <version>1.16</version>
233                 </dependency>
234                 <dependency>
235                         <groupId>org.apache.tomcat</groupId>
236                         <artifactId>tomcat-jdbc</artifactId>
237                         <version>8.0.24</version>
238                 </dependency>
239                 <dependency>
240                         <groupId>org.apache.tomcat</groupId>
241                         <artifactId>tomcat-dbcp</artifactId>
242                         <version>8.5.9</version>
243                 </dependency>
244         </dependencies>
245 </project>