Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 4 | ONAP Policy Engine - Drools PDP |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 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 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 26 | <artifactId>policy-core</artifactId> |
| 27 | <parent> |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 28 | <groupId>org.onap.policy.drools-pdp</groupId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 29 | <artifactId>drools-pdp</artifactId> |
Pamela Dragosh | 47d661e | 2017-11-15 11:58:28 -0500 | [diff] [blame] | 30 | <version>1.1.2-SNAPSHOT</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 31 | </parent> |
| 32 | |
Ralph Straubs | f5de85e | 2017-09-18 03:37:28 -0500 | [diff] [blame] | 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 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 84 | <dependencies> |
| 85 | <dependency> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 86 | <groupId>org.kie</groupId> |
| 87 | <artifactId>kie-api</artifactId> |
Ralph Straubs | 8ce73e2 | 2017-07-17 10:16:44 -0500 | [diff] [blame] | 88 | <version>6.5.0.Final</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.kie</groupId> |
| 92 | <artifactId>kie-ci</artifactId> |
Ralph Straubs | 8ce73e2 | 2017-07-17 10:16:44 -0500 | [diff] [blame] | 93 | <version>6.5.0.Final</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.drools</groupId> |
| 97 | <artifactId>drools-core</artifactId> |
Ralph Straubs | 8ce73e2 | 2017-07-17 10:16:44 -0500 | [diff] [blame] | 98 | <version>6.5.0.Final</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.drools</groupId> |
| 102 | <artifactId>drools-persistence-jpa</artifactId> |
Ralph Straubs | 8ce73e2 | 2017-07-17 10:16:44 -0500 | [diff] [blame] | 103 | <version>6.5.0.Final</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 104 | </dependency> |
| 105 | <dependency> |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 106 | <groupId>org.onap.policy.drools-pdp</groupId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 107 | <artifactId>policy-utils</artifactId> |
Pamela Dragosh | 998f0b3 | 2017-03-10 14:31:17 -0500 | [diff] [blame] | 108 | <version>${project.version}</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 109 | </dependency> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 110 | <dependency> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 111 | <groupId>junit</groupId> |
| 112 | <artifactId>junit</artifactId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 113 | <scope>test</scope> |
| 114 | </dependency> |
Ralph Straubs | f5de85e | 2017-09-18 03:37:28 -0500 | [diff] [blame] | 115 | </dependencies> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 116 | </project> |