release versions for common, model, parent, drools
[policy/drools-applications.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   drools-pdp-apps
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
22 <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/xsd/maven-4.0.0.xsd">
23
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.policy.parent</groupId>
27         <artifactId>integration</artifactId>
28         <version>3.3.0</version>
29         <relativePath />
30     </parent>
31
32     <groupId>org.onap.policy.drools-applications</groupId>
33     <artifactId>drools-applications</artifactId>
34     <version>1.8.0-SNAPSHOT</version>
35
36     <name>policy-drools-applications</name>
37     <packaging>pom</packaging>
38
39     <properties>
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         <!-- Project common dependency versions -->
48         <version.policy.common>1.8.0</version.policy.common>
49         <policy.models.version>2.4.0</policy.models.version>
50         <version.policy.drools-pdp>1.8.0</version.policy.drools-pdp>
51     </properties>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-deploy-plugin</artifactId>
58                 <configuration>
59                     <skip />
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <groupId>org.apache.maven.plugins</groupId>
64                 <artifactId>maven-compiler-plugin</artifactId>
65                 <configuration>
66                     <encoding>${project.encoding}</encoding>
67                     <release>${java.version}</release>
68                 </configuration>
69             </plugin>
70             <plugin>
71                 <groupId>org.apache.maven.plugins</groupId>
72                 <artifactId>maven-site-plugin</artifactId>
73                 <dependencies>
74                     <dependency>
75                         <groupId>org.apache.maven.wagon</groupId>
76                         <artifactId>wagon-webdav-jackrabbit</artifactId>
77                         <version>2.10</version>
78                     </dependency>
79                 </dependencies>
80             </plugin>
81         </plugins>
82         <pluginManagement>
83             <plugins>
84                 <plugin>
85                     <groupId>org.eclipse.m2e</groupId>
86                     <artifactId>lifecycle-mapping</artifactId>
87                     <version>1.0.0</version>
88                     <configuration>
89                         <lifecycleMappingMetadata>
90                             <pluginExecutions>
91                                 <pluginExecution>
92                                     <pluginExecutionFilter>
93                                         <groupId>org.apache.maven.plugins</groupId>
94                                         <artifactId>maven-checkstyle-plugin</artifactId>
95                                         <versionRange>2.17,)</versionRange>
96                                         <goals>
97                                             <goal>check</goal>
98                                         </goals>
99                                     </pluginExecutionFilter>
100                                     <action>
101                                         <ignore />
102                                     </action>
103                                 </pluginExecution>
104                             </pluginExecutions>
105                         </lifecycleMappingMetadata>
106                     </configuration>
107                 </plugin>
108             </plugins>
109         </pluginManagement>
110     </build>
111
112     <modules>
113         <module>controlloop</module>
114         <module>testsuites</module>
115     </modules>
116
117     <reporting>
118         <plugins>
119             <plugin>
120                 <groupId>org.apache.maven.plugins</groupId>
121                 <artifactId>maven-javadoc-plugin</artifactId>
122                 <version>2.10.4</version>
123                 <configuration>
124                     <failOnError>false</failOnError>
125                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
126                     <docletArtifact>
127                         <groupId>org.umlgraph</groupId>
128                         <artifactId>umlgraph</artifactId>
129                         <version>5.6</version>
130                     </docletArtifact>
131                     <additionalparam>-views</additionalparam>
132                     <useStandardDocletOptions>true</useStandardDocletOptions>
133                 </configuration>
134             </plugin>
135         </plugins>
136     </reporting>
137
138     <dependencies>
139         <dependency>
140             <groupId>ch.qos.logback</groupId>
141             <artifactId>logback-classic</artifactId>
142             <scope>provided</scope>
143         </dependency>
144         <dependency>
145             <groupId>junit</groupId>
146             <artifactId>junit</artifactId>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>org.powermock</groupId>
151             <artifactId>powermock-api-mockito2</artifactId>
152             <scope>test</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.mockito</groupId>
156             <artifactId>mockito-core</artifactId>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.powermock</groupId>
161             <artifactId>powermock-module-junit4</artifactId>
162             <scope>test</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.assertj</groupId>
166             <artifactId>assertj-core</artifactId>
167             <scope>test</scope>
168         </dependency>
169         <dependency>
170             <groupId>org.awaitility</groupId>
171             <artifactId>awaitility</artifactId>
172             <scope>test</scope>
173         </dependency>
174     </dependencies>
175
176 </project>