blob: 6a6db1ac47b37969b4ab94e5fe8879f314c83768 [file] [log] [blame]
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -04001<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.openecomp.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 </plugins>
31 </build>
32 <properties>
33 <encoding>UTF-8</encoding>
34 <epsdk.version>1.1.0-SNAPSHOT</epsdk.version>
35 <springframework.version>4.2.0.RELEASE</springframework.version>
36 <hibernate.version>4.3.11.Final</hibernate.version>
37 <skipassembly>true</skipassembly>
38 <skiptests>true</skiptests>
39 <jackson.version>2.6.0</jackson.version>
40 </properties>
41 <dependencies>
42 <dependency>
43 <groupId>org.openecomp.ecompsdkos</groupId>
44 <artifactId>epsdk-core</artifactId>
45 <version>${epsdk.version}</version>
46 </dependency>
47 <!-- Spring -->
48 <dependency>
49 <groupId>org.springframework</groupId>
50 <artifactId>spring-core</artifactId>
51 <version>${springframework.version}</version>
52 <exclusions>
53 <exclusion>
54 <groupId>commons-logging</groupId>
55 <artifactId>commons-logging</artifactId>
56 </exclusion>
57 </exclusions>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-test</artifactId>
62 <version>${springframework.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework</groupId>
66 <artifactId>spring-web</artifactId>
67 <version>${springframework.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework</groupId>
71 <artifactId>spring-webmvc</artifactId>
72 <version>${springframework.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework</groupId>
76 <artifactId>spring-tx</artifactId>
77 <version>${springframework.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.springframework</groupId>
81 <artifactId>spring-context-support</artifactId>
82 <version>${springframework.version}</version>
83 </dependency>
84 <!-- Hibernate -->
85 <dependency>
86 <groupId>org.hibernate</groupId>
87 <artifactId>hibernate-core</artifactId>
88 <version>${hibernate.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.hibernate</groupId>
92 <artifactId>hibernate-validator</artifactId>
93 <version>5.1.3.Final</version>
94 </dependency>
95 <!-- Javax Mail -->
96 <dependency>
97 <groupId>javax.mail</groupId>
98 <artifactId>mail</artifactId>
99 <version>1.4.7</version>
100 </dependency>
101 <!-- Mapper -->
102 <dependency>
103 <groupId>com.fasterxml.jackson.core</groupId>
104 <artifactId>jackson-annotations</artifactId>
105 <version>2.6.3</version>
106 </dependency>
107 <dependency>
108 <groupId>com.fasterxml.jackson.core</groupId>
109 <artifactId>jackson-core</artifactId>
110 <version>2.6.3</version>
111 </dependency>
112 <dependency>
113 <groupId>com.fasterxml.jackson.core</groupId>
114 <artifactId>jackson-databind</artifactId>
115 <version>2.6.3</version>
116 </dependency>
117 <dependency>
118 <groupId>com.fasterxml.jackson.module</groupId>
119 <artifactId>jackson-module-jaxb-annotations</artifactId>
120 <version>${jackson.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>com.fasterxml.jackson.module</groupId>
124 <artifactId>jackson-module-jsonSchema</artifactId>
125 <version>${jackson.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>com.fasterxml.jackson.dataformat</groupId>
129 <artifactId>jackson-dataformat-xml</artifactId>
130 <version>${jackson.version}</version>
131 </dependency>
132 <!-- Elastic Search -->
133 <dependency>
134 <groupId>org.elasticsearch</groupId>
135 <artifactId>elasticsearch</artifactId>
136 <version>2.2.0</version>
137 </dependency>
138 <dependency>
139 <groupId>org.json</groupId>
140 <artifactId>json</artifactId>
141 <version>20160212</version>
142 </dependency>
143 <dependency>
144 <groupId>io.searchbox</groupId>
145 <artifactId>jest</artifactId>
146 <version>2.0.0</version>
147 <exclusions>
148 <exclusion>
149 <groupId>commons-logging</groupId>
150 <artifactId>commons-logging</artifactId>
151 </exclusion>
152 </exclusions>
153 </dependency>
154 <dependency>
155 <groupId>org.openecomp.policy.engine</groupId>
156 <artifactId>ECOMP-PDP</artifactId>
157 <version>${project.version}</version>
158 <exclusions>
159 <exclusion>
160 <groupId>commons-logging</groupId>
161 <artifactId>commons-logging</artifactId>
162 </exclusion>
163 <exclusion>
164 <groupId>org.apache.httpcomponents</groupId>
165 <artifactId>httpcore</artifactId>
166 </exclusion>
167 <exclusion>
168 <groupId>com.att.aft</groupId>
169 <artifactId>dme2</artifactId>
170 </exclusion>
171 </exclusions>
172 </dependency>
173 <dependency>
174 <groupId>commons-fileupload</groupId>
175 <artifactId>commons-fileupload</artifactId>
176 <version>1.3.1</version>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.commons</groupId>
180 <artifactId>commons-compress</artifactId>
181 <version>1.8</version>
182 </dependency>
183 <dependency>
184 <groupId>args4j</groupId>
185 <artifactId>args4j</artifactId>
186 <version>2.32</version>
187 </dependency>
188 <dependency>
189 <groupId>org.apache.poi</groupId>
190 <artifactId>poi</artifactId>
191 <version>3.15</version>
192 </dependency>
193 <dependency>
194 <groupId>org.apache.poi</groupId>
195 <artifactId>poi-ooxml</artifactId>
196 <version>3.15</version>
197 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400198 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
199 <dependency>
200 <groupId>com.esotericsoftware.yamlbeans</groupId>
201 <artifactId>yamlbeans</artifactId>
202 <version>1.08</version>
203 </dependency>
204 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
205 <dependency>
206 <groupId>org.yaml</groupId>
207 <artifactId>snakeyaml</artifactId>
208 <version>1.16</version>
209 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400210 </dependencies>
211</project>