Integrate cds actor service provider
[policy/drools-applications.git] / controlloop / common / controller-usecases / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP
5   ================================================================================
6   Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
7   Modifications Copyright (C) 2019 Nordix Foundation.
8   Modifications Copyright (C) 2019 Bell Canada.
9   ================================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13   
14        http://www.apache.org/licenses/LICENSE-2.0
15   
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21   ============LICENSE_END=========================================================
22   -->
23
24 <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">
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
29         <artifactId>common</artifactId>
30         <version>1.6.0-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>controller-usecases</artifactId>
34     <packaging>kjar</packaging>
35
36     <name>${project.artifactId}</name>
37     <description>Usecases Experimental Controller</description>
38
39     <properties>
40         <maven.compiler.source>1.8</maven.compiler.source>
41         <maven.compiler.target>1.8</maven.compiler.target>
42     </properties>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.kie</groupId>
48                 <artifactId>kie-maven-plugin</artifactId>
49                 <version>6.5.0.Final</version>
50                 <extensions>true</extensions>
51             </plugin>
52         </plugins>
53     </build>
54
55     <dependencies>
56         <dependency>
57             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
58             <artifactId>events</artifactId>
59             <version>${policy.models.version}</version>
60             <scope>provided</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
64             <artifactId>appc</artifactId>
65             <version>${policy.models.version}</version>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
70             <artifactId>appclcm</artifactId>
71             <version>${policy.models.version}</version>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
76             <artifactId>sdnr</artifactId>
77             <version>${policy.models.version}</version>
78             <scope>provided</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
82             <artifactId>vfc</artifactId>
83             <version>${policy.models.version}</version>
84             <scope>provided</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
88             <artifactId>sdnc</artifactId>
89             <version>${policy.models.version}</version>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
94             <artifactId>so</artifactId>
95             <version>${policy.models.version}</version>
96             <scope>provided</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
100             <artifactId>aai</artifactId>
101             <version>${policy.models.version}</version>
102             <scope>provided</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
106             <artifactId>sdc</artifactId>
107             <version>${policy.models.version}</version>
108             <scope>provided</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
112             <artifactId>cds</artifactId>
113             <version>${policy.models.version}</version>
114             <scope>provided</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
118             <artifactId>eventmanager</artifactId>
119             <version>${project.version}</version>
120             <scope>provided</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
124             <artifactId>guard</artifactId>
125             <version>${project.version}</version>
126             <scope>provided</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
130             <artifactId>actorServiceProvider</artifactId>
131             <version>${policy.models.version}</version>
132             <scope>provided</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
136             <artifactId>actor.appc</artifactId>
137             <version>${policy.models.version}</version>
138             <scope>provided</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
142             <artifactId>actor.appclcm</artifactId>
143             <version>${policy.models.version}</version>
144             <scope>provided</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
148             <artifactId>actor.sdnr</artifactId>
149             <version>${policy.models.version}</version>
150             <scope>provided</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
154             <artifactId>actor.so</artifactId>
155             <version>${policy.models.version}</version>
156             <scope>provided</scope>
157         </dependency>
158         <dependency>
159             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
160             <artifactId>actor.vfc</artifactId>
161             <version>${policy.models.version}</version>
162             <scope>provided</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
166             <artifactId>actor.sdnc</artifactId>
167             <version>${policy.models.version}</version>
168             <scope>provided</scope>
169         </dependency>
170         <dependency>
171             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
172             <artifactId>actor.cds</artifactId>
173             <version>${policy.models.version}</version>
174         </dependency>
175         <dependency>
176             <groupId>org.onap.policy.models.policy-models-interactions</groupId>
177             <artifactId>model-yaml</artifactId>
178             <version>${policy.models.version}</version>
179             <scope>provided</scope>
180         </dependency>
181         <dependency>
182             <groupId>org.onap.policy.drools-pdp</groupId>
183             <artifactId>policy-management</artifactId>
184             <version>${version.policy.drools-pdp}</version>
185             <scope>provided</scope>
186             <optional>true</optional>
187         </dependency>
188         <dependency>
189             <groupId>junit</groupId>
190             <artifactId>junit</artifactId>
191             <scope>test</scope>
192         </dependency>
193     </dependencies>
194
195     <profiles>
196         <profile>
197             <!--This profile is used to store Eclipse m2e settings only. It has no 
198                 influence on the Maven build itself. -->
199             <id>only-eclipse</id>
200             <activation>
201                 <property>
202                     <name>m2e.version</name>
203                 </property>
204             </activation>
205             <build>
206                 <pluginManagement>
207                     <plugins>
208                         <plugin>
209                             <groupId>org.eclipse.m2e</groupId>
210                             <artifactId>lifecycle-mapping</artifactId>
211                             <version>1.0.0</version>
212                             <configuration>
213                                 <lifecycleMappingMetadata>
214                                     <pluginExecutions>
215                                         <pluginExecution>
216                                             <pluginExecutionFilter>
217                                                 <groupId>org.kie</groupId>
218                                                 <artifactId>kie-maven-plugin</artifactId>
219                                                 <versionRange>6.5.0.Final</versionRange>
220                                                 <goals>
221                                                     <goal>build</goal>
222                                                 </goals>
223                                             </pluginExecutionFilter>
224                                             <action>
225                                                 <ignore />
226                                             </action>
227                                         </pluginExecution>
228                                     </pluginExecutions>
229                                 </lifecycleMappingMetadata>
230                             </configuration>
231                         </plugin>
232                     </plugins>
233                 </pluginManagement>
234             </build>
235         </profile>
236     </profiles>
237 </project>