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.3-SNAPSHOT</version>
28         <relativePath />
29     </parent>
30     <groupId>org.onap.policy.engine</groupId>
31     <artifactId>PolicyEngineSuite</artifactId>
32     <version>1.6.4-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.encoding>UTF-8</project.encoding>
39         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40         <!-- Project path properties -->
41         <nexusproxy>https://nexus.onap.org</nexusproxy>
42         <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
43         <releases.path>content/repositories/releases/</releases.path>
44         <snapshots.path>content/repositories/snapshots/</snapshots.path>
45         <staging.path>content/repositories/staging/</staging.path>
46
47         <!-- Default Sonar configuration -->
48         <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
49
50         <!-- Project common dependency versions -->
51         <springframework.version>4.3.24.RELEASE</springframework.version>
52         <jetty.plugin.version>9.2.3.v20140905</jetty.plugin.version>
53         <jackson.version>2.9.4</jackson.version>
54         <commons.fileupload.version>1.3.3</commons.fileupload.version>
55         <commons.compress.version>1.18</commons.compress.version>
56         <elasticsearch.version>6.8.2</elasticsearch.version>
57         <version.policy.common>1.6.5-SNAPSHOT</version.policy.common>
58         <version.policy.models>2.2.6-SNAPSHOT</version.policy.models>
59     </properties>
60     <modules>
61         <module>PolicyEngineUtils</module>
62         <module>ONAP-XACML</module>
63         <module>ONAP-REST</module>
64         <module>PolicyEngineAPI</module>
65         <module>ONAP-PDP</module>
66         <module>ONAP-PDP-REST</module>
67         <module>ONAP-PAP-REST</module>
68         <module>LogParser</module>
69         <module>PolicyEngineClient</module>
70         <module>BRMSGateway</module>
71         <module>POLICY-SDK-APP</module>
72         <module>ONAP-SDK-APP</module>
73         <module>packages</module>
74         <module>TestSuite</module>
75     </modules>
76     <reporting>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-javadoc-plugin</artifactId>
81                 <version>2.10.4</version>
82                 <configuration>
83                     <failOnError>false</failOnError>
84                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
85                     <docletArtifact>
86                         <groupId>org.umlgraph</groupId>
87                         <artifactId>umlgraph</artifactId>
88                         <version>5.6</version>
89                     </docletArtifact>
90                     <additionalparam>-views</additionalparam>
91                     <useStandardDocletOptions>true</useStandardDocletOptions>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </reporting>
96     <dependencies>
97         <dependency>
98             <groupId>org.projectlombok</groupId>
99             <artifactId>lombok</artifactId>
100             <scope>provided</scope>
101         </dependency>
102         <dependency>
103             <groupId>javax.servlet</groupId>
104             <artifactId>javax.servlet-api</artifactId>
105         </dependency>
106         <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
107         <dependency>
108             <groupId>com.fasterxml.jackson.core</groupId>
109             <artifactId>jackson-databind</artifactId>
110             <version>${jackson.version}</version>
111         </dependency>
112         <dependency>
113             <groupId>junit</groupId>
114             <artifactId>junit</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.assertj</groupId>
119             <artifactId>assertj-core</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.springframework</groupId>
124             <artifactId>spring-mock</artifactId>
125             <version>2.0.8</version>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>com.mockrunner</groupId>
130             <artifactId>mockrunner</artifactId>
131             <version>0.3.1</version>
132             <scope>test</scope>
133         </dependency>
134         <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito -->
135         <dependency>
136             <groupId>org.powermock</groupId>
137             <artifactId>powermock-api-mockito2</artifactId>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.powermock</groupId>
142             <artifactId>powermock-module-junit4</artifactId>
143             <scope>test</scope>
144         </dependency>
145         <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
146         <dependency>
147             <groupId>org.mockito</groupId>
148             <artifactId>mockito-all</artifactId>
149             <scope>test</scope>
150         </dependency>
151         <dependency>
152             <groupId>org.easymock</groupId>
153             <artifactId>easymock</artifactId>
154             <version>4.1</version>
155             <scope>test</scope>
156         </dependency>
157         <dependency>
158             <groupId>org.glassfish.jersey.inject</groupId>
159             <artifactId>jersey-hk2</artifactId>
160             <scope>test</scope>
161         </dependency>
162     </dependencies>
163     <build>
164         <plugins>
165             <plugin>
166                 <groupId>org.apache.maven.plugins</groupId>
167                 <artifactId>maven-deploy-plugin</artifactId>
168                 <configuration>
169                     <skip />
170                 </configuration>
171             </plugin>
172             <plugin>
173                 <groupId>org.apache.maven.plugins</groupId>
174                 <artifactId>maven-surefire-plugin</artifactId>
175             </plugin>
176             <plugin>
177                 <groupId>org.apache.maven.plugins</groupId>
178                 <artifactId>maven-clean-plugin</artifactId>
179                 <version>2.4.1</version>
180             </plugin>
181             <plugin>
182                 <groupId>org.apache.maven.plugins</groupId>
183                 <artifactId>maven-compiler-plugin</artifactId>
184                 <configuration>
185                     <encoding>${project.encoding}</encoding>
186                     <release>${java.version}</release>
187                 </configuration>
188             </plugin>
189             <plugin>
190                 <groupId>org.apache.maven.plugins</groupId>
191                 <artifactId>maven-resources-plugin</artifactId>
192                 <configuration>
193                     <encoding>${project.encoding}</encoding>
194                 </configuration>
195             </plugin>
196             <plugin>
197                 <groupId>org.apache.maven.plugins</groupId>
198                 <artifactId>maven-war-plugin</artifactId>
199                 <configuration>
200                     <failOnMissingWebXml>false</failOnMissingWebXml>
201                 </configuration>
202             </plugin>
203             <!-- The Jetty plugin allows us to easily test the development build by
204                 running jetty:run on the command line. -->
205             <plugin>
206                 <groupId>org.eclipse.jetty</groupId>
207                 <artifactId>jetty-maven-plugin</artifactId>
208                 <version>${jetty.plugin.version}</version>
209                 <configuration>
210                     <scanIntervalSeconds>2</scanIntervalSeconds>
211                 </configuration>
212             </plugin>
213             <plugin>
214                 <groupId>com.fortify.ps.maven.plugin</groupId>
215                 <artifactId>sca-maven-plugin</artifactId>
216                 <version>4.20</version>
217             </plugin>
218             <plugin>
219                 <groupId>org.apache.maven.plugins</groupId>
220                 <artifactId>maven-site-plugin</artifactId>
221                 <dependencies>
222                     <dependency>
223                         <groupId>org.apache.maven.wagon</groupId>
224                         <artifactId>wagon-webdav-jackrabbit</artifactId>
225                         <version>2.10</version>
226                     </dependency>
227                 </dependencies>
228             </plugin>
229         </plugins>
230         <pluginManagement>
231             <plugins>
232                 <plugin>
233                     <groupId>org.eclipse.m2e</groupId>
234                     <artifactId>lifecycle-mapping</artifactId>
235                     <version>1.0.0</version>
236                     <configuration>
237                         <lifecycleMappingMetadata>
238                             <pluginExecutions>
239                                 <pluginExecution>
240                                     <pluginExecutionFilter>
241                                         <groupId>org.apache.maven.plugins</groupId>
242                                         <artifactId>maven-checkstyle-plugin</artifactId>
243                                         <versionRange>2.17,)</versionRange>
244                                         <goals>
245                                             <goal>check</goal>
246                                         </goals>
247                                     </pluginExecutionFilter>
248                                     <action>
249                                         <ignore />
250                                     </action>
251                                 </pluginExecution>
252                             </pluginExecutions>
253                         </lifecycleMappingMetadata>
254                     </configuration>
255                 </plugin>
256             </plugins>
257         </pluginManagement>
258     </build>
259 </project>