Merge "add exec option to policy usage message"
[policy/drools-pdp.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine - Drools PDP
5   ================================================================================
6   Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
7   Modifications Copyright (C) 2020 Nordix Foundation.
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12
13        http://www.apache.org/licenses/LICENSE-2.0
14
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21 -->
22
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.policy.parent</groupId>
28         <artifactId>integration</artifactId>
29         <version>3.2.0</version>
30         <relativePath />
31     </parent>
32
33     <groupId>org.onap.policy.drools-pdp</groupId>
34     <artifactId>drools-pdp</artifactId>
35     <version>1.7.1-SNAPSHOT</version>
36     <packaging>pom</packaging>
37     <name>policy-drools-pdp</name>
38
39     <description>The ONAP Policy Engine drools-based PDP Project</description>
40
41     <properties>
42         <!-- Project path properties -->
43         <nexusproxy>https://nexus.onap.org</nexusproxy>
44         <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
45         <releases.path>content/repositories/releases/</releases.path>
46         <snapshots.path>content/repositories/snapshots/</snapshots.path>
47         <staging.path>content/repositories/staging/</staging.path>
48
49         <!-- Project common dependency versions -->
50         <json.path.version>2.4.0</json.path.version>
51         <hibernate.core.version>5.4.18.Final</hibernate.core.version>
52         <hibernate.commons.annotations.version>5.0.1.Final</hibernate.commons.annotations.version>
53         <commons.io.version>2.5</commons.io.version>
54         <xml.apis.version>1.4.01</xml.apis.version>
55         <policy.common.version>1.7.0</policy.common.version>
56         <policy.models.version>2.3.0</policy.models.version>
57     </properties>
58
59     <modules>
60         <module>policy-utils</module>
61         <module>policy-core</module>
62         <module>policy-domains</module>
63         <module>policy-management</module>
64         <module>feature-healthcheck</module>
65         <module>feature-eelf</module>
66         <module>feature-pooling-dmaap</module>
67         <module>feature-session-persistence</module>
68         <module>feature-test-transaction</module>
69         <module>api-state-management</module>
70         <module>feature-state-management</module>
71         <module>api-active-standby-management</module>
72         <module>feature-active-standby-management</module>
73         <module>feature-simulators</module>
74         <module>feature-distributed-locking</module>
75         <module>feature-controller-logging</module>
76         <module>feature-mdc-filters</module>
77         <module>feature-lifecycle</module>
78         <module>feature-drools-init</module>
79         <module>api-server-pool-state-control</module>
80         <module>feature-server-pool</module>
81         <module>packages</module>
82     </modules>
83
84     <dependencyManagement>
85         <dependencies>
86             <dependency>
87                 <groupId>javax.ws.rs</groupId>
88                 <artifactId>javax.ws.rs-api</artifactId>
89                 <version>2.1.1</version>
90             </dependency>
91             <dependency>
92                 <groupId>org.glassfish.hk2.external</groupId>
93                 <artifactId>javax.inject</artifactId>
94                 <version>2.5.0-b62</version>
95             </dependency>
96             <dependency>
97                 <groupId>com.jayway.jsonpath</groupId>
98                 <artifactId>json-path</artifactId>
99                 <version>${json.path.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>org.hibernate</groupId>
103                 <artifactId>hibernate-core</artifactId>
104                 <version>${hibernate.core.version}</version>
105             </dependency>
106             <dependency>
107                 <groupId>org.hibernate.common</groupId>
108                 <artifactId>hibernate-commons-annotations</artifactId>
109                 <version>${hibernate.commons.annotations.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>commons-io</groupId>
113                 <artifactId>commons-io</artifactId>
114                 <version>${commons.io.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>xml-apis</groupId>
118                 <artifactId>xml-apis</artifactId>
119                 <version>${xml.apis.version}</version>
120             </dependency>
121         </dependencies>
122     </dependencyManagement>
123
124     <build>
125         <plugins>
126             <plugin>
127                 <groupId>org.apache.maven.plugins</groupId>
128                 <artifactId>maven-deploy-plugin</artifactId>
129                 <configuration>
130                     <skip/>
131                 </configuration>
132             </plugin>
133             <plugin>
134                 <groupId>org.apache.maven.plugins</groupId>
135                 <artifactId>maven-compiler-plugin</artifactId>
136             </plugin>
137             <plugin>
138                 <groupId>org.apache.maven.plugins</groupId>
139                 <artifactId>maven-resources-plugin</artifactId>
140             </plugin>
141
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-site-plugin</artifactId>
145                 <dependencies>
146                     <dependency>
147                         <groupId>org.apache.maven.wagon</groupId>
148                         <artifactId>wagon-webdav-jackrabbit</artifactId>
149                         <version>2.10</version>
150                     </dependency>
151                 </dependencies>
152             </plugin>
153         </plugins>
154         <pluginManagement>
155             <plugins>
156                 <plugin>
157                     <groupId>org.eclipse.m2e</groupId>
158                     <artifactId>lifecycle-mapping</artifactId>
159                     <version>1.0.0</version>
160                     <configuration>
161                         <lifecycleMappingMetadata>
162                             <pluginExecutions>
163                                 <pluginExecution>
164                                     <pluginExecutionFilter>
165                                         <groupId>org.apache.maven.plugins</groupId>
166                                         <artifactId>maven-checkstyle-plugin</artifactId>
167                                         <versionRange>2.17,)</versionRange>
168                                         <goals>
169                                             <goal>check</goal>
170                                         </goals>
171                                     </pluginExecutionFilter>
172                                     <action>
173                                         <ignore/>
174                                     </action>
175                                 </pluginExecution>
176                             </pluginExecutions>
177                         </lifecycleMappingMetadata>
178                     </configuration>
179                 </plugin>
180             </plugins>
181         </pluginManagement>
182     </build>
183     <reporting>
184         <plugins>
185             <plugin>
186                 <groupId>org.apache.maven.plugins</groupId>
187                 <artifactId>maven-javadoc-plugin</artifactId>
188                 <version>2.10.4</version>
189                 <configuration>
190                     <failOnError>false</failOnError>
191                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
192                     <docletArtifact>
193                         <groupId>org.umlgraph</groupId>
194                         <artifactId>umlgraph</artifactId>
195                         <version>5.6</version>
196                     </docletArtifact>
197                     <additionalparam>-views</additionalparam>
198                     <useStandardDocletOptions>true</useStandardDocletOptions>
199                 </configuration>
200             </plugin>
201         </plugins>
202     </reporting>
203
204 </project>