Added new test transaction feature
[policy/drools-pdp.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - Drools PDP
4   ================================================================================
5   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19   -->
20
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23         <modelVersion>4.0.0</modelVersion>
24
25         <parent>
26                 <groupId>org.onap.oparent</groupId>
27                 <artifactId>oparent</artifactId>
28                 <version>1.0.0-SNAPSHOT</version>
29                 <relativePath/>
30         </parent>
31
32         <groupId>org.onap.policy.drools-pdp</groupId>
33         <artifactId>drools-pdp</artifactId>
34         <version>1.1.0-SNAPSHOT</version>
35         <packaging>pom</packaging>
36         <name>Policy Engine - Drools PDP</name>
37
38         <description>The ONAP Policy Engine drools-based PDP Project</description>
39
40         <properties>
41                 <project.source.version>1.8</project.source.version>
42                 <project.target.version>1.8</project.target.version>
43                 <common-modules.version>1.1.0-SNAPSHOT</common-modules.version>
44                 <dmaap.version>0.2.12</dmaap.version>
45                 <cambria.version>0.0.1</cambria.version>
46                 <jersey.version>2.22.2</jersey.version>
47                 <jersey.swagger.version>1.5.13</jersey.swagger.version>
48                 <jackson.version>2.8.4</jackson.version>
49                 <http.client.version>4.5</http.client.version>
50                 <http.core.version>4.4.4</http.core.version>
51                 <logback.version>1.2.3</logback.version>
52                 <junit.version>4.12</junit.version>
53                 <eclipselink.version>2.6.4</eclipselink.version>
54                 <mariadb.jdbc.version>2.1.0</mariadb.jdbc.version>
55                 <hibernate.core.version>5.2.10.Final</hibernate.core.version>
56                 <hibernate.commons.annotations.version>5.0.1.Final</hibernate.commons.annotations.version>
57
58                 <nexusproxy>https://nexus.onap.org</nexusproxy>
59                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
60                 <releases.path>content/repositories/releases/</releases.path>
61                 <snapshots.path>content/repositories/snapshots/</snapshots.path>
62                 <staging.path>content/repositories/staging/</staging.path>
63         </properties>
64
65         <modules>
66                 <module>policy-utils</module>
67                 <module>policy-core</module>
68                 <module>policy-endpoints</module>
69                 <module>policy-management</module>
70                 <module>feature-healthcheck</module>
71                 <module>feature-eelf</module>
72                 <module>feature-session-persistence</module>
73                 <module>feature-test-transaction</module>
74                 <module>packages</module>
75         </modules>
76
77         <distributionManagement>
78                 <repository>
79                         <id>ecomp-releases</id>
80                         <name>ONAP Release Repository</name>
81                         <url>${nexusproxy}/${releases.path}</url>
82                 </repository>
83                 <snapshotRepository>
84                         <id>ecomp-snapshots</id>
85                         <name>ONAP Snapshot Repository</name>
86                         <url>${nexusproxy}/${snapshots.path}</url>
87                 </snapshotRepository>
88                 <site>
89                         <id>ecomp-site</id>
90                         <url>dav:${nexusproxy}${sitePath}</url>
91                 </site>
92         </distributionManagement>
93
94         <dependencies/>
95
96         <dependencyManagement>
97                 <dependencies>
98                         <dependency>
99                                 <groupId>com.google.guava</groupId>
100                                 <artifactId>guava</artifactId>
101                                 <version>16.0.1</version>
102                         </dependency>
103                         <dependency>
104                                 <groupId>javax.ws.rs</groupId>
105                                 <artifactId>javax.ws.rs-api</artifactId>
106                                 <version>2.0.1</version>
107                         </dependency>
108                         <dependency>
109                                 <groupId>org.glassfish.hk2.external</groupId>
110                                 <artifactId>javax.inject</artifactId>
111                                 <version>2.4.0-b31</version>
112                         </dependency>
113                         <dependency>
114                                 <groupId>com.fasterxml.jackson.jaxrs</groupId>
115                                 <artifactId>jackson-jaxrs-base</artifactId>
116                                 <version>${jackson.version}</version>
117                         </dependency>
118                         <dependency>
119                                 <groupId>com.fasterxml.jackson.jaxrs</groupId>
120                                 <artifactId>jackson-jaxrs-json-provider</artifactId>
121                                 <version>${jackson.version}</version>
122                         </dependency>
123                         <dependency>
124                                 <groupId>com.fasterxml.jackson.dataformat</groupId>
125                                 <artifactId>jackson-dataformat-xml</artifactId>
126                                 <version>${jackson.version}</version>
127                         </dependency>
128                         <dependency>
129                                 <groupId>com.fasterxml.jackson.dataformat</groupId>
130                                 <artifactId>jackson-dataformat-yaml</artifactId>
131                                 <version>${jackson.version}</version>
132                         </dependency>
133                         <dependency>
134                                 <groupId>com.fasterxml.jackson.datatype</groupId>
135                                 <artifactId>jackson-datatype-joda</artifactId>
136                                 <version>${jackson.version}</version>
137                         </dependency>
138                         <dependency>
139                                 <groupId>org.glassfish.jersey.containers</groupId>
140                                 <artifactId>jersey-common</artifactId>
141                                 <version>${jersey.version}</version>
142                         </dependency>
143                         <dependency>
144                                 <groupId>org.glassfish.jersey.containers</groupId>
145                                 <artifactId>jersey-container-servlet-core</artifactId>
146                                 <version>${jersey.version}</version>
147                         </dependency>
148                         <dependency>
149                                 <groupId>io.swagger</groupId>
150                                 <artifactId>swagger-jersey2-jaxrs</artifactId>
151                                 <version>${jersey.swagger.version}</version>
152                         </dependency>
153                         <dependency>
154                                 <groupId>org.apache.httpcomponents</groupId>
155                                 <artifactId>httpclient</artifactId>
156                                 <version>${http.client.version}</version>
157                         </dependency>
158                         <dependency>
159                                 <groupId>org.apache.httpcomponents</groupId>
160                                 <artifactId>httpcore</artifactId>
161                                 <version>${http.core.version}</version>
162                         </dependency>
163                         <dependency>
164                                 <groupId>ch.qos.logback</groupId>
165                                 <artifactId>logback-classic</artifactId>
166                                 <version>${logback.version}</version>
167                         </dependency>
168                         <dependency>
169                                 <groupId>junit</groupId>
170                                 <artifactId>junit</artifactId>
171                                 <version>${junit.version}</version>
172                         </dependency>
173                         <dependency>
174                                 <groupId>org.eclipse.persistence</groupId>
175                                 <artifactId>eclipselink</artifactId>
176                                 <version>${eclipselink.version}</version>
177                         </dependency>
178                         <dependency>
179                             <groupId>org.mariadb.jdbc</groupId>
180                             <artifactId>mariadb-java-client</artifactId>
181                             <version>${mariadb.jdbc.version}</version>
182                         </dependency>
183                         <dependency>
184                             <groupId>org.hibernate</groupId>
185                             <artifactId>hibernate-core</artifactId>
186                             <version>${hibernate.core.version}</version>
187                         </dependency>
188                         <dependency>
189                             <groupId>org.hibernate.common</groupId>
190                             <artifactId>hibernate-commons-annotations</artifactId>
191                             <version>${hibernate.commons.annotations.version}</version>
192                         </dependency>
193                 </dependencies>
194         </dependencyManagement>
195
196         <build>
197                 <plugins>
198                         <plugin>
199                                 <groupId>org.sonatype.plugins</groupId>
200                                 <artifactId>nexus-staging-maven-plugin</artifactId>
201                                 <extensions>true</extensions>
202                                 <configuration>
203                                         <nexusUrl>${nexusproxy}</nexusUrl>
204                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
205                                         <serverId>ecomp-staging</serverId>
206                                 </configuration>
207                         </plugin>
208                         <plugin>
209                                 <groupId>org.apache.maven.plugins</groupId>
210                                 <artifactId>maven-deploy-plugin</artifactId>
211                                 <configuration>
212                                         <skip />
213                                 </configuration>
214                         </plugin>
215                         <plugin>
216                                 <groupId>org.apache.maven.plugins</groupId>
217                                 <artifactId>maven-compiler-plugin</artifactId>
218                                 <version>3.0</version>
219                                 <configuration>
220                                         <encoding>${project.encoding}</encoding>
221                                         <source>${project.source.version}</source>
222                                         <target>${project.target.version}</target>
223                                 </configuration>
224                         </plugin>
225                         <plugin>
226                                 <groupId>org.apache.maven.plugins</groupId>
227                                 <artifactId>maven-resources-plugin</artifactId>
228                                 <version>2.6</version>
229                                 <configuration>
230                                         <encoding>${project.encoding}</encoding>
231                                 </configuration>
232                         </plugin>
233
234                         <plugin>
235                           <groupId>org.apache.maven.plugins</groupId>
236                           <artifactId>maven-site-plugin</artifactId>
237                           <version>3.6</version>
238                           <dependencies>
239                             <dependency>
240                               <groupId>org.apache.maven.wagon</groupId>
241                               <artifactId>wagon-webdav-jackrabbit</artifactId>
242                               <version>2.10</version>
243                             </dependency>
244                           </dependencies>
245                         </plugin>
246
247                         <plugin>
248                                 <groupId>org.jacoco</groupId>
249                                 <artifactId>jacoco-maven-plugin</artifactId>
250                         </plugin>
251
252                         <plugin>
253                                 <groupId>org.codehaus.mojo</groupId>
254                                 <artifactId>sonar-maven-plugin</artifactId>
255                         </plugin>
256                 </plugins>
257                 <pluginManagement>
258                         <plugins>
259                <plugin>
260                     <groupId>org.eclipse.m2e</groupId>
261                     <artifactId>lifecycle-mapping</artifactId>
262                     <version>1.0.0</version>
263                     <configuration>
264                         <lifecycleMappingMetadata>
265                             <pluginExecutions>
266                                 <pluginExecution>
267                                     <pluginExecutionFilter>
268                                         <groupId>org.apache.maven.plugins</groupId>
269                                         <artifactId>maven-checkstyle-plugin</artifactId>
270                                         <versionRange>2.17,)</versionRange>
271                                         <goals>
272                                             <goal>check</goal>
273                                         </goals>
274                                     </pluginExecutionFilter>
275                                     <action>
276                                         <ignore />
277                                     </action>
278                                 </pluginExecution>
279                             </pluginExecutions>
280                         </lifecycleMappingMetadata>
281                     </configuration>
282                 </plugin>
283                         </plugins>
284                 </pluginManagement>
285         </build>
286         <reporting>
287           <plugins>
288             <plugin>
289               <groupId>org.apache.maven.plugins</groupId>
290               <artifactId>maven-javadoc-plugin</artifactId>
291               <version>2.10.4</version>
292               <configuration>
293                 <failOnError>false</failOnError>
294                 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
295                 <docletArtifact>
296                   <groupId>org.umlgraph</groupId>
297                   <artifactId>umlgraph</artifactId>
298                   <version>5.6</version>
299                 </docletArtifact>
300                 <additionalparam>-views</additionalparam>
301                 <useStandardDocletOptions>true</useStandardDocletOptions>
302               </configuration>
303             </plugin>
304           </plugins>
305         </reporting>
306
307 </project>