blob: 818039555f6c81502e90aa61092e4d2b8bcbf897 [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Guo Ruijing6abeb292017-07-28 08:23:01 +00004 ONAP Policy Engine - Drools PDP
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05005 ================================================================================
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
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050026 <artifactId>policy-core</artifactId>
27 <parent>
Guo Ruijing6abeb292017-07-28 08:23:01 +000028 <groupId>org.onap.policy.drools-pdp</groupId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050029 <artifactId>drools-pdp</artifactId>
Jessica Wagantall9de8f792017-11-18 18:47:57 -080030 <version>1.2.0-SNAPSHOT</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050031 </parent>
32
Ralph Straubsf5de85e2017-09-18 03:37:28 -050033 <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
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050084 <dependencies>
85 <dependency>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050086 <groupId>org.kie</groupId>
87 <artifactId>kie-api</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050088 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050089 </dependency>
90 <dependency>
91 <groupId>org.kie</groupId>
92 <artifactId>kie-ci</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050093 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050094 </dependency>
95 <dependency>
96 <groupId>org.drools</groupId>
97 <artifactId>drools-core</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -050098 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050099 </dependency>
100 <dependency>
101 <groupId>org.drools</groupId>
102 <artifactId>drools-persistence-jpa</artifactId>
Ralph Straubs8ce73e22017-07-17 10:16:44 -0500103 <version>6.5.0.Final</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500104 </dependency>
105 <dependency>
Guo Ruijing6abeb292017-07-28 08:23:01 +0000106 <groupId>org.onap.policy.drools-pdp</groupId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500107 <artifactId>policy-utils</artifactId>
Pamela Dragosh998f0b32017-03-10 14:31:17 -0500108 <version>${project.version}</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500109 </dependency>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500110 <dependency>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500111 <groupId>junit</groupId>
112 <artifactId>junit</artifactId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500113 <scope>test</scope>
114 </dependency>
Ralph Straubsf5de85e2017-09-18 03:37:28 -0500115 </dependencies>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500116</project>