Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
jhh | 6dfc470 | 2022-07-12 14:05:19 -0500 | [diff] [blame] | 5 | Copyright (C) 2018-2022 AT&T Intellectual Property. All rights reserved. |
liamfallon | 340292f | 2023-01-31 10:44:23 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2020,2023 Nordix Foundation. |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 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 |
RossC | c50265a | 2020-06-30 15:57:07 +0100 | [diff] [blame] | 11 | |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
RossC | c50265a | 2020-06-30 15:57:07 +0100 | [diff] [blame] | 13 | |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 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 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 22 | <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] | 23 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 25 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 28 | <artifactId>drools-pdp</artifactId> |
liamfallon | 3e9a566 | 2023-05-25 09:41:12 +0100 | [diff] [blame^] | 29 | <version>2.0.0-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 30 | </parent> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 31 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 32 | <artifactId>feature-distributed-locking</artifactId> |
| 33 | |
| 34 | <name>feature-distributed-locking</name> |
| 35 | <description>Loadable module that provides distributed locking capability</description> |
| 36 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <artifactId>maven-assembly-plugin</artifactId> |
| 41 | <executions> |
| 42 | <execution> |
| 43 | <id>zipfile</id> |
| 44 | <goals> |
| 45 | <goal>single</goal> |
| 46 | </goals> |
| 47 | <phase>package</phase> |
| 48 | <configuration> |
| 49 | <attach>true</attach> |
| 50 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 51 | <descriptors> |
| 52 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 53 | </descriptors> |
| 54 | <appendAssemblyId>false</appendAssemblyId> |
| 55 | </configuration> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-dependency-plugin</artifactId> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <id>copy-dependencies</id> |
| 65 | <goals> |
| 66 | <goal>copy-dependencies</goal> |
| 67 | </goals> |
| 68 | <phase>prepare-package</phase> |
| 69 | <configuration> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 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> |
jhh | 6dfc470 | 2022-07-12 14:05:19 -0500 | [diff] [blame] | 102 | <version>2.9.0</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.commons</groupId> |
| 106 | <artifactId>commons-pool2</artifactId> |
jhh | 6dfc470 | 2022-07-12 14:05:19 -0500 | [diff] [blame] | 107 | <version>2.11.1</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 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> |
liamfallon | 340292f | 2023-01-31 10:44:23 +0000 | [diff] [blame] | 120 | <groupId>org.mockito</groupId> |
| 121 | <artifactId>mockito-core</artifactId> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.springframework</groupId> |
| 126 | <artifactId>spring-test</artifactId> |
Jim Hahn | eac53de | 2018-10-01 13:52:03 -0400 | [diff] [blame] | 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 130 | <groupId>com.h2database</groupId> |
| 131 | <artifactId>h2</artifactId> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.onap.policy.common</groupId> |
| 136 | <artifactId>utils</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 137 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 138 | <scope>provided</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.onap.policy.common</groupId> |
| 142 | <artifactId>utils-test</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 143 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 144 | <scope>test</scope> |
| 145 | </dependency> |
| 146 | </dependencies> |
Magnusen, Drew (dm741q) | fff9b57 | 2018-03-21 16:44:45 -0500 | [diff] [blame] | 147 | |
| 148 | </project> |