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