Straubs, Ralph (rs8887) | f9e71de | 2019-10-28 07:49:56 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 5 | Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. |
Straubs, Ralph (rs8887) | f9e71de | 2019-10-28 07:49:56 -0500 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 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/xsd/maven-4.0.0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 28 | <artifactId>drools-pdp</artifactId> |
Pamela Dragosh | 3f5c528 | 2020-04-24 17:12:14 -0400 | [diff] [blame^] | 29 | <version>1.6.3-SNAPSHOT</version> |
Straubs, Ralph (rs8887) | f9e71de | 2019-10-28 07:49:56 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>feature-drools-init</artifactId> |
| 33 | <name>feature-drools-init</name> |
| 34 | |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <artifactId>maven-assembly-plugin</artifactId> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <id>zipfile</id> |
| 42 | <goals> |
| 43 | <goal>single</goal> |
| 44 | </goals> |
| 45 | <phase>package</phase> |
| 46 | <configuration> |
| 47 | <attach>true</attach> |
| 48 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 49 | <descriptors> |
| 50 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 51 | </descriptors> |
| 52 | <appendAssemblyId>false</appendAssemblyId> |
| 53 | </configuration> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 63 | <artifactId>policy-core</artifactId> |
| 64 | <version>${project.version}</version> |
| 65 | <scope>provided</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 69 | <artifactId>policy-management</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | <scope>provided</scope> |
| 72 | </dependency> |
| 73 | |
| 74 | <dependency> |
| 75 | <groupId>org.powermock</groupId> |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 76 | <artifactId>powermock-api-mockito2</artifactId> |
Straubs, Ralph (rs8887) | f9e71de | 2019-10-28 07:49:56 -0500 | [diff] [blame] | 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>junit</groupId> |
| 81 | <artifactId>junit</artifactId> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | </dependencies> |
| 85 | |
| 86 | </project> |