blob: ca397b41191f93fd6724192409984dd53cf8e0ff [file] [log] [blame]
Straubs, Ralph (rs8887)001320e2020-02-04 03:26:30 -06001<!--
2 ============LICENSE_START=======================================================
3 feature-server-pool
4 ================================================================================
5 Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
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>
Ram Krishna Verma6d432962020-12-04 16:52:09 -050029 <version>1.6.5-SNAPSHOT</version>
Straubs, Ralph (rs8887)001320e2020-02-04 03:26:30 -060030 </parent>
31
32 <artifactId>feature-server-pool</artifactId>
33
34 <name>feature-server-pool</name>
35 <description>Allows multiple DroolsPDP hosts to be active at once</description>
36
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 <version>3.1.1</version>
63 <executions>
64 <execution>
65 <id>copy-dependencies</id>
66 <goals>
67 <goal>copy-dependencies</goal>
68 </goals>
69 <phase>prepare-package</phase>
70 <configuration>
71 <transitive>false</transitive>
72 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
73 <overWriteReleases>false</overWriteReleases>
74 <overWriteSnapshots>true</overWriteSnapshots>
75 <overWriteIfNewer>true</overWriteIfNewer>
76 <useRepositoryLayout>false</useRepositoryLayout>
77 <addParentPoms>false</addParentPoms>
78 <copyPom>false</copyPom>
79 <includeScope>runtime</includeScope>
80 <excludeTransitive>true</excludeTransitive>
81 </configuration>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
87
88 <dependencies>
89 <dependency>
90 <groupId>org.onap.policy.drools-pdp</groupId>
91 <artifactId>policy-core</artifactId>
92 <version>${project.version}</version>
93 <scope>provided</scope>
94 </dependency>
95
96 <dependency>
97 <groupId>org.onap.policy.common</groupId>
98 <artifactId>policy-endpoints</artifactId>
99 <version>${policy.common.version}</version>
100 <scope>provided</scope>
101 </dependency>
102
103 <dependency>
104 <groupId>org.onap.policy.common</groupId>
105 <artifactId>utils</artifactId>
106 <version>${policy.common.version}</version>
107 <scope>provided</scope>
108 </dependency>
109
110 <dependency>
111 <groupId>org.onap.policy.drools-pdp</groupId>
112 <artifactId>policy-management</artifactId>
113 <version>${project.version}</version>
114 <scope>provided</scope>
115 </dependency>
116
117 <dependency>
118 <groupId>com.att.nsa</groupId>
119 <artifactId>cambriaClient</artifactId>
120 <scope>provided</scope>
121 </dependency>
122
123 <dependency>
Straubs, Ralph (rs8887)36310ce2020-05-08 05:35:27 -0500124 <groupId>org.projectlombok</groupId>
125 <artifactId>lombok</artifactId>
126 <scope>provided</scope>
127 </dependency>
128
129 <dependency>
Straubs, Ralph (rs8887)001320e2020-02-04 03:26:30 -0600130 <groupId>org.onap.policy.drools-pdp</groupId>
131 <artifactId>api-server-pool-state-control</artifactId>
132 <version>${project.version}</version>
133 </dependency>
134
135 <dependency>
136 <groupId>org.glassfish.jersey.core</groupId>
137 <artifactId>jersey-common</artifactId>
138 <scope>test</scope>
139 </dependency>
140
141 <dependency>
142 <groupId>org.glassfish.jersey.media</groupId>
143 <artifactId>jersey-media-json-jackson</artifactId>
144 <scope>test</scope>
145 </dependency>
146
147 <dependency>
148 <groupId>com.google.guava</groupId>
149 <artifactId>guava</artifactId>
150 <scope>test</scope>
151 </dependency>
152
153 <dependency>
154 <groupId>org.powermock</groupId>
155 <artifactId>powermock-api-mockito2</artifactId>
156 <scope>test</scope>
157 </dependency>
158
159 <dependency>
160 <groupId>org.powermock</groupId>
161 <artifactId>powermock-module-junit4</artifactId>
162 <scope>test</scope>
163 </dependency>
164
165 <dependency>
166 <groupId>junit</groupId>
167 <artifactId>junit</artifactId>
168 <scope>provided</scope>
169 </dependency>
170
171 <dependency>
172 <groupId>org.assertj</groupId>
173 <artifactId>assertj-core</artifactId>
174 <scope>test</scope>
175 </dependency>
176
177 <dependency>
178 <groupId>org.awaitility</groupId>
179 <artifactId>awaitility</artifactId>
180 <scope>test</scope>
181 </dependency>
182 </dependencies>
183
184</project>