blob: 4e043335d62dff2cb44b04ccce935bf5d6566fbe [file] [log] [blame]
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Jim Hahn92e3d552021-02-17 11:51:52 -05005 Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved.
RossCc50265a2020-06-30 15:57:07 +01006 Modifications Copyright (C) 2020 Nordix Foundation.
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -05007 ================================================================================
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
RossCc50265a2020-06-30 15:57:07 +010011
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -050012 http://www.apache.org/licenses/LICENSE-2.0
RossCc50265a2020-06-30 15:57:07 +010013
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -050014 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
liamfallon99200202018-10-31 16:00:08 +000022<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)fff9b572018-03-21 16:44:45 -050023
Pamela Dragoshfd307be2018-08-28 18:10:51 -040024 <modelVersion>4.0.0</modelVersion>
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -050025
Pamela Dragoshfd307be2018-08-28 18:10:51 -040026 <parent>
27 <groupId>org.onap.policy.drools-pdp</groupId>
28 <artifactId>drools-pdp</artifactId>
jhhb2a43b32021-02-24 07:53:26 -060029 <version>1.8.1-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040030 </parent>
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -050031
Pamela Dragoshfd307be2018-08-28 18:10:51 -040032 <artifactId>feature-distributed-locking</artifactId>
33
34 <name>feature-distributed-locking</name>
35 <description>Loadable module that provides distributed locking capability</description>
36
Pamela Dragoshfd307be2018-08-28 18:10:51 -040037 <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>
70 <transitive>false</transitive>
71 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
72 <overWriteReleases>false</overWriteReleases>
73 <overWriteSnapshots>true</overWriteSnapshots>
74 <overWriteIfNewer>true</overWriteIfNewer>
75 <useRepositoryLayout>false</useRepositoryLayout>
76 <addParentPoms>false</addParentPoms>
77 <copyPom>false</copyPom>
78 <includeScope>runtime</includeScope>
79 <excludeTransitive>true</excludeTransitive>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86
87 <dependencies>
88 <dependency>
89 <groupId>org.onap.policy.drools-pdp</groupId>
90 <artifactId>policy-core</artifactId>
91 <version>${project.version}</version>
92 <scope>provided</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.onap.policy.drools-pdp</groupId>
96 <artifactId>policy-management</artifactId>
97 <version>${project.version}</version>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.commons</groupId>
102 <artifactId>commons-dbcp2</artifactId>
Jim Hahn92e3d552021-02-17 11:51:52 -0500103 <version>2.8.0</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400104 </dependency>
105 <dependency>
106 <groupId>org.apache.commons</groupId>
107 <artifactId>commons-pool2</artifactId>
RossCc50265a2020-06-30 15:57:07 +0100108 <version>2.8.0</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400109 </dependency>
110 <dependency>
111 <groupId>junit</groupId>
112 <artifactId>junit</artifactId>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
Jim Hahn6e0b4502019-09-24 10:51:21 -0400116 <groupId>org.assertj</groupId>
117 <artifactId>assertj-core</artifactId>
118 <scope>test</scope>
119 </dependency>
120 <dependency>
Jim Hahneac53de2018-10-01 13:52:03 -0400121 <groupId>org.powermock</groupId>
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -0600122 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahneac53de2018-10-01 13:52:03 -0400123 <scope>test</scope>
124 </dependency>
125 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400126 <groupId>com.h2database</groupId>
127 <artifactId>h2</artifactId>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.onap.policy.common</groupId>
132 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100133 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400134 <scope>provided</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.onap.policy.common</groupId>
138 <artifactId>utils-test</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100139 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400140 <scope>test</scope>
141 </dependency>
142 </dependencies>
Magnusen, Drew (dm741q)fff9b572018-03-21 16:44:45 -0500143
144</project>