Bump minor version
[policy/drools-pdp.git] / policy-core / 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 AT&T Intellectual Property. All rights reserved.
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"
23          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   <artifactId>policy-core</artifactId>
27   <parent>
28     <groupId>org.onap.policy.drools-pdp</groupId>
29     <artifactId>drools-pdp</artifactId>
30     <version>1.2.0-SNAPSHOT</version>
31   </parent>
32
33   <build>
34     <plugins>
35
36       <!--
37         'maven-invoker-plugin' is used to build and install two versions of a
38         Drools artifact, both of which are used in Junit tests. These Maven
39         projects are invisible to Sonar and SonarQube, so there are no
40         complaints about multiple projects with the same artifact, and they
41         don't show up in the list of files or code line counts.
42       -->
43       <plugin>
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-invoker-plugin</artifactId>
46         <version>3.0.1</version>
47         <executions>
48
49           <execution>
50             <id>drools-artifact-1.1</id>
51             <goals>
52               <goal>run</goal>
53             </goals>
54             <phase>test-compile</phase>
55             <configuration>
56               <pom>drools-artifact-1.1/pom.xml</pom>
57               <goals>
58                 <goal>install</goal>
59               </goals>
60               <streamLogs>true</streamLogs>
61             </configuration>
62           </execution>          
63
64           <execution>
65             <id>drools-artifact-1.2</id>
66             <goals>
67               <goal>run</goal>
68             </goals>
69             <phase>test-compile</phase>
70             <configuration>
71               <pom>drools-artifact-1.2/pom.xml</pom>
72               <goals>
73                 <goal>install</goal>
74               </goals>
75               <streamLogs>true</streamLogs>
76             </configuration>
77           </execution>          
78
79         </executions>
80       </plugin>
81     </plugins>
82   </build>
83
84   <dependencies>
85     <dependency>
86       <groupId>org.kie</groupId>
87       <artifactId>kie-api</artifactId>
88       <version>6.5.0.Final</version>
89     </dependency>
90     <dependency>
91       <groupId>org.kie</groupId>
92       <artifactId>kie-ci</artifactId>
93       <version>6.5.0.Final</version>
94     </dependency>
95     <dependency>
96       <groupId>org.drools</groupId>
97       <artifactId>drools-core</artifactId>
98       <version>6.5.0.Final</version>
99     </dependency>
100     <dependency>
101       <groupId>org.drools</groupId>
102       <artifactId>drools-persistence-jpa</artifactId>
103       <version>6.5.0.Final</version>
104     </dependency>
105     <dependency>
106        <groupId>org.onap.policy.drools-pdp</groupId>
107        <artifactId>policy-utils</artifactId>
108        <version>${project.version}</version>  
109      </dependency>
110     <dependency>
111       <groupId>junit</groupId>
112       <artifactId>junit</artifactId>
113       <scope>test</scope>
114     </dependency>
115   </dependencies>
116 </project>