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