Update css file name in conf.py
[policy/engine.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2019 Nordix Foundation.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11
12        http://www.apache.org/licenses/LICENSE-2.0
13
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
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     <parent>
25         <groupId>org.onap.policy.parent</groupId>
26         <artifactId>integration</artifactId>
27         <version>3.1.0</version>
28         <relativePath />
29     </parent>
30     <groupId>org.onap.policy.engine</groupId>
31     <artifactId>PolicyEngineSuite</artifactId>
32     <version>1.6.0-SNAPSHOT</version>
33     <packaging>pom</packaging>
34     <name>policy-engine</name>
35     <description>The ONAP Policy Engine main pom</description>
36     <properties>
37         <!-- Project common build settings -->
38         <project.source.version>1.8</project.source.version>
39         <project.target.version>1.8</project.target.version>
40         <project.encoding>UTF-8</project.encoding>
41         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
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         <!-- Default Sonar configuration -->
50         <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
51
52         <!-- Project common dependency versions -->
53         <springframework.version>4.3.24.RELEASE</springframework.version>
54         <jetty.plugin.version>9.2.3.v20140905</jetty.plugin.version>
55         <jackson.version>2.9.4</jackson.version>
56         <commons.fileupload.version>1.3.3</commons.fileupload.version>
57         <commons.compress.version>1.18</commons.compress.version>
58         <elasticsearch.version>6.8.2</elasticsearch.version>
59         <version.policy.common>1.6.1</version.policy.common>
60         <version.policy.models>2.2.0</version.policy.models>
61     </properties>
62     <modules>
63         <module>PolicyEngineUtils</module>
64         <module>ONAP-XACML</module>
65         <module>ONAP-REST</module>
66         <module>PolicyEngineAPI</module>
67         <module>ONAP-PDP</module>
68         <module>ONAP-PDP-REST</module>
69         <module>ONAP-PAP-REST</module>
70         <module>LogParser</module>
71         <module>PolicyEngineClient</module>
72         <module>BRMSGateway</module>
73         <module>POLICY-SDK-APP</module>
74         <module>ONAP-SDK-APP</module>
75         <module>packages</module>
76         <module>TestSuite</module>
77     </modules>
78     <reporting>
79         <plugins>
80             <plugin>
81                 <groupId>org.apache.maven.plugins</groupId>
82                 <artifactId>maven-javadoc-plugin</artifactId>
83                 <version>2.10.4</version>
84                 <configuration>
85                     <failOnError>false</failOnError>
86                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
87                     <docletArtifact>
88                         <groupId>org.umlgraph</groupId>
89                         <artifactId>umlgraph</artifactId>
90                         <version>5.6</version>
91                     </docletArtifact>
92                     <additionalparam>-views</additionalparam>
93                     <useStandardDocletOptions>true</useStandardDocletOptions>
94                 </configuration>
95             </plugin>
96         </plugins>
97     </reporting>
98     <dependencies>
99         <dependency>
100             <groupId>org.projectlombok</groupId>
101             <artifactId>lombok</artifactId>
102             <scope>provided</scope>
103         </dependency>
104         <dependency>
105             <groupId>javax.servlet</groupId>
106             <artifactId>javax.servlet-api</artifactId>
107         </dependency>
108         <dependency>
109             <!-- org.w3c.dom dependencies -->
110             <groupId>xml-apis</groupId>
111             <artifactId>xml-apis</artifactId>
112             <version>1.3.03</version>
113         </dependency>
114         <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
115         <dependency>
116             <groupId>com.fasterxml.jackson.core</groupId>
117             <artifactId>jackson-databind</artifactId>
118             <version>${jackson.version}</version>
119         </dependency>
120         <dependency>
121             <groupId>junit</groupId>
122             <artifactId>junit</artifactId>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.assertj</groupId>
127             <artifactId>assertj-core</artifactId>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.springframework</groupId>
132             <artifactId>spring-mock</artifactId>
133             <version>2.0.8</version>
134             <scope>test</scope>
135         </dependency>
136         <dependency>
137             <groupId>com.mockrunner</groupId>
138             <artifactId>mockrunner</artifactId>
139             <version>0.3.1</version>
140             <scope>test</scope>
141         </dependency>
142         <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito -->
143         <dependency>
144             <groupId>org.powermock</groupId>
145             <artifactId>powermock-api-mockito</artifactId>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.powermock</groupId>
150             <artifactId>powermock-module-junit4</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
154         <dependency>
155             <groupId>org.mockito</groupId>
156             <artifactId>mockito-all</artifactId>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.easymock</groupId>
161             <artifactId>easymock</artifactId>
162             <version>3.1</version>
163             <scope>test</scope>
164         </dependency>
165         <dependency>
166             <groupId>org.glassfish.jersey.inject</groupId>
167             <artifactId>jersey-hk2</artifactId>
168             <scope>test</scope>
169         </dependency>
170     </dependencies>
171     <build>
172         <plugins>
173             <plugin>
174                 <groupId>org.apache.maven.plugins</groupId>
175                 <artifactId>maven-deploy-plugin</artifactId>
176                 <configuration>
177                     <skip />
178                 </configuration>
179             </plugin>
180             <plugin>
181                 <groupId>org.apache.maven.plugins</groupId>
182                 <artifactId>maven-surefire-plugin</artifactId>
183             </plugin>
184             <plugin>
185                 <groupId>org.apache.maven.plugins</groupId>
186                 <artifactId>maven-clean-plugin</artifactId>
187                 <version>2.4.1</version>
188             </plugin>
189             <plugin>
190                 <groupId>org.apache.maven.plugins</groupId>
191                 <artifactId>maven-compiler-plugin</artifactId>
192                 <configuration>
193                     <encoding>${project.encoding}</encoding>
194                     <source>${project.source.version}</source>
195                     <target>${project.target.version}</target>
196                 </configuration>
197             </plugin>
198             <plugin>
199                 <groupId>org.apache.maven.plugins</groupId>
200                 <artifactId>maven-resources-plugin</artifactId>
201                 <configuration>
202                     <encoding>${project.encoding}</encoding>
203                 </configuration>
204             </plugin>
205             <plugin>
206                 <groupId>org.apache.maven.plugins</groupId>
207                 <artifactId>maven-war-plugin</artifactId>
208                 <configuration>
209                     <failOnMissingWebXml>false</failOnMissingWebXml>
210                 </configuration>
211             </plugin>
212             <!-- The Jetty plugin allows us to easily test the development build by
213                 running jetty:run on the command line. -->
214             <plugin>
215                 <groupId>org.eclipse.jetty</groupId>
216                 <artifactId>jetty-maven-plugin</artifactId>
217                 <version>${jetty.plugin.version}</version>
218                 <configuration>
219                     <scanIntervalSeconds>2</scanIntervalSeconds>
220                 </configuration>
221             </plugin>
222             <plugin>
223                 <groupId>com.fortify.ps.maven.plugin</groupId>
224                 <artifactId>sca-maven-plugin</artifactId>
225                 <version>4.20</version>
226             </plugin>
227             <plugin>
228                 <groupId>org.apache.maven.plugins</groupId>
229                 <artifactId>maven-site-plugin</artifactId>
230                 <dependencies>
231                     <dependency>
232                         <groupId>org.apache.maven.wagon</groupId>
233                         <artifactId>wagon-webdav-jackrabbit</artifactId>
234                         <version>2.10</version>
235                     </dependency>
236                 </dependencies>
237             </plugin>
238         </plugins>
239         <pluginManagement>
240             <plugins>
241                 <plugin>
242                     <groupId>org.eclipse.m2e</groupId>
243                     <artifactId>lifecycle-mapping</artifactId>
244                     <version>1.0.0</version>
245                     <configuration>
246                         <lifecycleMappingMetadata>
247                             <pluginExecutions>
248                                 <pluginExecution>
249                                     <pluginExecutionFilter>
250                                         <groupId>org.apache.maven.plugins</groupId>
251                                         <artifactId>maven-checkstyle-plugin</artifactId>
252                                         <versionRange>2.17,)</versionRange>
253                                         <goals>
254                                             <goal>check</goal>
255                                         </goals>
256                                     </pluginExecutionFilter>
257                                     <action>
258                                         <ignore />
259                                     </action>
260                                 </pluginExecution>
261                             </pluginExecutions>
262                         </lifecycleMappingMetadata>
263                     </configuration>
264                 </plugin>
265             </plugins>
266         </pluginManagement>
267     </build>
268 </project>