Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -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) 2018-2020 AT&T Intellectual Property. All rights reserved. |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -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 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 21 | <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"> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 22 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 24 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Peyton Puckett | 06a0e4a | 2020-03-24 13:55:15 -0500 | [diff] [blame] | 28 | <version>1.6.1-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 29 | </parent> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 30 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 31 | <artifactId>feature-distributed-locking</artifactId> |
| 32 | |
| 33 | <name>feature-distributed-locking</name> |
| 34 | <description>Loadable module that provides distributed locking capability</description> |
| 35 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <artifactId>maven-assembly-plugin</artifactId> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <id>zipfile</id> |
| 43 | <goals> |
| 44 | <goal>single</goal> |
| 45 | </goals> |
| 46 | <phase>package</phase> |
| 47 | <configuration> |
| 48 | <attach>true</attach> |
| 49 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 50 | <descriptors> |
| 51 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 52 | </descriptors> |
| 53 | <appendAssemblyId>false</appendAssemblyId> |
| 54 | </configuration> |
| 55 | </execution> |
| 56 | </executions> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-dependency-plugin</artifactId> |
| 61 | <executions> |
| 62 | <execution> |
| 63 | <id>copy-dependencies</id> |
| 64 | <goals> |
| 65 | <goal>copy-dependencies</goal> |
| 66 | </goals> |
| 67 | <phase>prepare-package</phase> |
| 68 | <configuration> |
| 69 | <transitive>false</transitive> |
| 70 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 71 | <overWriteReleases>false</overWriteReleases> |
| 72 | <overWriteSnapshots>true</overWriteSnapshots> |
| 73 | <overWriteIfNewer>true</overWriteIfNewer> |
| 74 | <useRepositoryLayout>false</useRepositoryLayout> |
| 75 | <addParentPoms>false</addParentPoms> |
| 76 | <copyPom>false</copyPom> |
| 77 | <includeScope>runtime</includeScope> |
| 78 | <excludeTransitive>true</excludeTransitive> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </build> |
| 85 | |
| 86 | <dependencies> |
| 87 | <dependency> |
| 88 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 89 | <artifactId>policy-core</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | <scope>provided</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 95 | <artifactId>policy-management</artifactId> |
| 96 | <version>${project.version}</version> |
| 97 | <scope>provided</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.apache.commons</groupId> |
| 101 | <artifactId>commons-dbcp2</artifactId> |
| 102 | <version>2.1.1</version> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.commons</groupId> |
| 106 | <artifactId>commons-pool2</artifactId> |
| 107 | <version>2.4.2</version> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>junit</groupId> |
| 111 | <artifactId>junit</artifactId> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
Jim Hahn | 6e0b450 | 2019-09-24 10:51:21 -0400 | [diff] [blame] | 115 | <groupId>org.assertj</groupId> |
| 116 | <artifactId>assertj-core</artifactId> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
Jim Hahn | eac53de | 2018-10-01 13:52:03 -0400 | [diff] [blame] | 120 | <groupId>org.powermock</groupId> |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 121 | <artifactId>powermock-api-mockito2</artifactId> |
Jim Hahn | eac53de | 2018-10-01 13:52:03 -0400 | [diff] [blame] | 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 125 | <groupId>com.h2database</groupId> |
| 126 | <artifactId>h2</artifactId> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.onap.policy.common</groupId> |
| 131 | <artifactId>utils</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 132 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 133 | <scope>provided</scope> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.onap.policy.common</groupId> |
| 137 | <artifactId>utils-test</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 138 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | </dependencies> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 142 | |
| 143 | </project> |