update dependency to policy/models
[policy/drools-applications.git] / controlloop / common / feature-controlloop-management / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP
4   ================================================================================
5   Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2019 Nordix Foundation.
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
11
12        http://www.apache.org/licenses/LICENSE-2.0
13
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
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">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
27         <artifactId>common</artifactId>
28         <version>1.4.0-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>feature-controlloop-management</artifactId>
32
33     <description>
34         Extensions to the PDP-D to improve control loop specific management capabilities.
35     </description>
36
37     <properties>
38         <maven.compiler.source>1.8</maven.compiler.source>
39         <maven.compiler.target>1.8</maven.compiler.target>
40     </properties>
41
42     <build>
43         <resources>
44             <resource>
45                 <directory>src/main/feature</directory>
46                 <filtering>true</filtering>
47             </resource>
48         </resources>
49         <plugins>
50             <plugin>
51                 <artifactId>maven-assembly-plugin</artifactId>
52                 <executions>
53                     <execution>
54                         <id>zipfile</id>
55                         <goals>
56                             <goal>single</goal>
57                         </goals>
58                         <phase>package</phase>
59                         <configuration>
60                             <attach>true</attach>
61                             <finalName>${project.artifactId}-${project.version}</finalName>
62                             <descriptors>
63                                 <descriptor>src/assembly/zip.xml</descriptor>
64                             </descriptors>
65                             <appendAssemblyId>false</appendAssemblyId>
66                         </configuration>
67                     </execution>
68                 </executions>
69             </plugin>
70
71             <plugin>
72                 <groupId>org.apache.maven.plugins</groupId>
73                 <artifactId>maven-dependency-plugin</artifactId>
74                 <executions>
75                     <execution>
76                         <id>copy-dependencies</id>
77                         <goals>
78                             <goal>copy-dependencies</goal>
79                         </goals>
80                         <phase>prepare-package</phase>
81                         <configuration>
82                             <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
83                             <overWriteReleases>false</overWriteReleases>
84                             <overWriteSnapshots>true</overWriteSnapshots>
85                             <overWriteIfNewer>true</overWriteIfNewer>
86                             <useRepositoryLayout>false</useRepositoryLayout>
87                             <addParentPoms>false</addParentPoms>
88                             <copyPom>false</copyPom>
89                             <includeScope>runtime</includeScope>
90                             <excludeTransitive>false</excludeTransitive>
91                         </configuration>
92                     </execution>
93                 </executions>
94             </plugin>
95         </plugins>
96     </build>
97
98     <dependencies>
99         <dependency>
100             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
101             <artifactId>events</artifactId>
102             <version>${policy.models.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
106             <artifactId>appc</artifactId>
107             <version>${policy.models.version}</version>
108         </dependency>
109         <dependency>
110             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
111             <artifactId>appclcm</artifactId>
112             <version>${policy.models.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
116             <artifactId>sdnc</artifactId>
117             <version>${policy.models.version}</version>
118         </dependency>
119         <dependency>
120             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
121             <artifactId>sdnr</artifactId>
122             <version>${policy.models.version}</version>
123         </dependency>
124         <dependency>
125             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
126             <artifactId>vfc</artifactId>
127             <version>${policy.models.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
131             <artifactId>so</artifactId>
132             <version>${policy.models.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
136             <artifactId>aai</artifactId>
137             <version>${policy.models.version}</version>
138         </dependency>
139         <dependency>
140             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
141             <artifactId>sdc</artifactId>
142             <version>${policy.models.version}</version>
143         </dependency>
144         <dependency>
145             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
146             <artifactId>trafficgenerator</artifactId>
147             <version>${policy.models.version}</version>
148         </dependency>
149         <dependency>
150             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
151             <artifactId>eventmanager</artifactId>
152             <version>${project.version}</version>
153         </dependency>
154         <dependency>
155             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
156             <artifactId>guard</artifactId>
157             <version>${project.version}</version>
158         </dependency>
159         <dependency>
160             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
161             <artifactId>actorServiceProvider</artifactId>
162             <version>${policy.models.version}</version>
163             <exclusions>
164                 <exclusion>
165                     <artifactId>guava</artifactId>
166                     <groupId>com.google.guava</groupId>
167                 </exclusion>
168             </exclusions>
169         </dependency>
170         <dependency>
171             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
172             <artifactId>actor.appc</artifactId>
173             <version>${policy.models.version}</version>
174             <exclusions>
175                 <exclusion>
176                     <artifactId>guava</artifactId>
177                     <groupId>com.google.guava</groupId>
178                 </exclusion>
179             </exclusions>
180         </dependency>
181         <dependency>
182             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
183             <artifactId>actor.appclcm</artifactId>
184             <version>${policy.models.version}</version>
185             <exclusions>
186                 <exclusion>
187                     <artifactId>guava</artifactId>
188                     <groupId>com.google.guava</groupId>
189                 </exclusion>
190             </exclusions>
191         </dependency>
192         <dependency>
193             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
194             <artifactId>actor.sdnr</artifactId>
195             <version>${policy.models.version}</version>
196             <exclusions>
197                 <exclusion>
198                     <artifactId>guava</artifactId>
199                     <groupId>com.google.guava</groupId>
200                 </exclusion>
201             </exclusions>
202         </dependency>
203         <dependency>
204             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
205             <artifactId>actor.so</artifactId>
206             <version>${policy.models.version}</version>
207             <exclusions>
208                 <exclusion>
209                     <artifactId>guava</artifactId>
210                     <groupId>com.google.guava</groupId>
211                 </exclusion>
212             </exclusions>
213         </dependency>
214         <dependency>
215             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
216             <artifactId>actor.vfc</artifactId>
217             <version>${policy.models.version}</version>
218             <exclusions>
219                 <exclusion>
220                     <artifactId>guava</artifactId>
221                     <groupId>com.google.guava</groupId>
222                 </exclusion>
223             </exclusions>
224         </dependency>
225         <dependency>
226             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
227             <artifactId>actor.sdnc</artifactId>
228             <version>${policy.models.version}</version>
229             <exclusions>
230                 <exclusion>
231                     <artifactId>guava</artifactId>
232                     <groupId>com.google.guava</groupId>
233                 </exclusion>
234             </exclusions>
235         </dependency>
236         <dependency>
237             <groupId>org.onap.policy.models.policy-models-interactions</groupId>
238             <artifactId>model-yaml</artifactId>
239             <version>${policy.models.version}</version>
240             <exclusions>
241                 <exclusion>
242                     <artifactId>guava</artifactId>
243                     <groupId>com.google.guava</groupId>
244                 </exclusion>
245                 <exclusion>
246                     <artifactId>snakeyaml</artifactId>
247                     <groupId>org.yaml</groupId>
248                 </exclusion>
249             </exclusions>
250         </dependency>
251         <dependency>
252             <groupId>org.onap.policy.drools-pdp</groupId>
253             <artifactId>policy-management</artifactId>
254             <version>${version.policy.drools-pdp}</version>
255             <scope>provided</scope>
256         </dependency>
257         <dependency>
258             <groupId>junit</groupId>
259             <artifactId>junit</artifactId>
260             <scope>test</scope>
261         </dependency>
262         <dependency>
263             <groupId>org.awaitility</groupId>
264             <artifactId>awaitility</artifactId>
265             <version>3.0.0</version>
266             <scope>test</scope>
267         </dependency>
268     </dependencies>
269 </project>