blob: 778a9cd8c4bd051adb9bd176bcf3ff86072aa743 [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>
Taka Cho633fbb72020-07-10 15:09:52 -040029 <version>1.7.1-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>
Straubs, Ralph (rs8887)001320e2020-02-04 03:26:30 -060062 <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
95 <dependency>
96 <groupId>org.onap.policy.common</groupId>
97 <artifactId>policy-endpoints</artifactId>
98 <version>${policy.common.version}</version>
99 <scope>provided</scope>
100 </dependency>
101
102 <dependency>
103 <groupId>org.onap.policy.common</groupId>
104 <artifactId>utils</artifactId>
105 <version>${policy.common.version}</version>
106 <scope>provided</scope>
107 </dependency>
108
109 <dependency>
110 <groupId>org.onap.policy.drools-pdp</groupId>
111 <artifactId>policy-management</artifactId>
112 <version>${project.version}</version>
113 <scope>provided</scope>
114 </dependency>
115
116 <dependency>
117 <groupId>com.att.nsa</groupId>
118 <artifactId>cambriaClient</artifactId>
119 <scope>provided</scope>
120 </dependency>
121
122 <dependency>
Straubs, Ralph (rs8887)36310ce2020-05-08 05:35:27 -0500123 <groupId>org.projectlombok</groupId>
124 <artifactId>lombok</artifactId>
125 <scope>provided</scope>
126 </dependency>
127
128 <dependency>
Straubs, Ralph (rs8887)001320e2020-02-04 03:26:30 -0600129 <groupId>org.onap.policy.drools-pdp</groupId>
130 <artifactId>api-server-pool-state-control</artifactId>
131 <version>${project.version}</version>
132 </dependency>
133
134 <dependency>
135 <groupId>org.glassfish.jersey.core</groupId>
136 <artifactId>jersey-common</artifactId>
137 <scope>test</scope>
138 </dependency>
139
140 <dependency>
Straubs, Ralph (rs8887)001320e2020-02-04 03:26:30 -0600141 <groupId>com.google.guava</groupId>
142 <artifactId>guava</artifactId>
143 <scope>test</scope>
144 </dependency>
145
146 <dependency>
147 <groupId>org.powermock</groupId>
148 <artifactId>powermock-api-mockito2</artifactId>
149 <scope>test</scope>
150 </dependency>
151
152 <dependency>
153 <groupId>org.powermock</groupId>
154 <artifactId>powermock-module-junit4</artifactId>
155 <scope>test</scope>
156 </dependency>
157
158 <dependency>
159 <groupId>junit</groupId>
160 <artifactId>junit</artifactId>
161 <scope>provided</scope>
162 </dependency>
163
164 <dependency>
165 <groupId>org.assertj</groupId>
166 <artifactId>assertj-core</artifactId>
167 <scope>test</scope>
168 </dependency>
169
170 <dependency>
171 <groupId>org.awaitility</groupId>
172 <artifactId>awaitility</artifactId>
173 <scope>test</scope>
174 </dependency>
175 </dependencies>
176
177</project>