blob: 29334f6dadebf686b06cd20c067ea900779d53a1 [file] [log] [blame]
Jim Hahn6a37af42020-07-30 18:05:02 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP
5 ================================================================================
jhh4b5cbc82022-11-04 11:53:50 -05006 Copyright (C) 2020-2022 AT&T Intellectual Property. All rights reserved.
Jim Hahn6a37af42020-07-30 18:05:02 -04007 ================================================================================
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>drools-applications-common</artifactId>
liamfallon501f3672022-12-16 12:30:32 +000028 <version>1.12.1-SNAPSHOT</version>
Jim Hahn6a37af42020-07-30 18:05:02 -040029 </parent>
30
31 <artifactId>controller-usecases</artifactId>
Jim Hahnffdf2102020-07-30 18:05:02 -040032 <packaging>kjar</packaging>
Jim Hahn6a37af42020-07-30 18:05:02 -040033
34 <name>${project.artifactId}</name>
35 <description>Usecases Experimental Controller</description>
36
Jim Hahnffdf2102020-07-30 18:05:02 -040037 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.kie</groupId>
41 <artifactId>kie-maven-plugin</artifactId>
42 <extensions>true</extensions>
43 </plugin>
44 </plugins>
45 </build>
46
Jim Hahn6a37af42020-07-30 18:05:02 -040047 <dependencies>
48 <dependency>
49 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
50 <artifactId>events</artifactId>
51 <version>${policy.models.version}</version>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
56 <artifactId>aai</artifactId>
57 <version>${policy.models.version}</version>
58 <scope>provided</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
62 <artifactId>appc</artifactId>
63 <version>${policy.models.version}</version>
64 <scope>provided</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
68 <artifactId>appclcm</artifactId>
69 <version>${policy.models.version}</version>
70 <scope>provided</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
74 <artifactId>cds</artifactId>
75 <version>${policy.models.version}</version>
76 <scope>provided</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
Jim Hahn6a37af42020-07-30 18:05:02 -040080 <artifactId>sdnc</artifactId>
81 <version>${policy.models.version}</version>
82 <scope>provided</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
86 <artifactId>sdnr</artifactId>
87 <version>${policy.models.version}</version>
88 <scope>provided</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
92 <artifactId>so</artifactId>
93 <version>${policy.models.version}</version>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
98 <artifactId>vfc</artifactId>
99 <version>${policy.models.version}</version>
100 <scope>provided</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
104 <artifactId>eventmanager</artifactId>
105 <version>${project.version}</version>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
110 <artifactId>actorServiceProvider</artifactId>
111 <version>${policy.models.version}</version>
112 <scope>provided</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
116 <artifactId>actor.aai</artifactId>
117 <version>${policy.models.version}</version>
118 <scope>provided</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
122 <artifactId>actor.appc</artifactId>
123 <version>${policy.models.version}</version>
124 <scope>provided</scope>
125 </dependency>
126 <dependency>
127 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
128 <artifactId>actor.appclcm</artifactId>
129 <version>${policy.models.version}</version>
130 <scope>provided</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
134 <artifactId>actor.cds</artifactId>
135 <version>${policy.models.version}</version>
136 </dependency>
137 <dependency>
138 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
Jim Hahn27c0d0c2021-07-20 17:34:22 -0400139 <artifactId>actor.xacml</artifactId>
Jim Hahn6a37af42020-07-30 18:05:02 -0400140 <version>${policy.models.version}</version>
141 <scope>provided</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
145 <artifactId>actor.sdnc</artifactId>
146 <version>${policy.models.version}</version>
147 <scope>provided</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
151 <artifactId>actor.sdnr</artifactId>
152 <version>${policy.models.version}</version>
153 <scope>provided</scope>
154 </dependency>
155 <dependency>
156 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
jhh4b5cbc82022-11-04 11:53:50 -0500157 <artifactId>actor.a1p</artifactId>
158 <version>${policy.models.version}</version>
159 <scope>provided</scope>
160 </dependency>
161 <dependency>
162 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
Jim Hahn6a37af42020-07-30 18:05:02 -0400163 <artifactId>actor.so</artifactId>
164 <version>${policy.models.version}</version>
165 <scope>provided</scope>
166 </dependency>
167 <dependency>
168 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
169 <artifactId>actor.vfc</artifactId>
170 <version>${policy.models.version}</version>
171 <scope>provided</scope>
172 </dependency>
173 <dependency>
Jim Hahn6a37af42020-07-30 18:05:02 -0400174 <groupId>org.onap.policy.drools-pdp</groupId>
175 <artifactId>policy-management</artifactId>
176 <version>${version.policy.drools-pdp}</version>
177 <scope>provided</scope>
178 <optional>true</optional>
179 </dependency>
180 <dependency>
181 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
182 <artifactId>rules-test</artifactId>
183 <version>${project.version}</version>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
187 <groupId>org.onap.policy.common</groupId>
188 <artifactId>utils-test</artifactId>
189 <version>${version.policy.common}</version>
190 <scope>test</scope>
191 </dependency>
192 <dependency>
193 <groupId>com.h2database</groupId>
194 <artifactId>h2</artifactId>
195 <scope>test</scope>
196 </dependency>
197 </dependencies>
198
199 <profiles>
200 <profile>
201 <!--This profile is used to store Eclipse m2e settings only. It has no
202 influence on the Maven build itself. -->
203 <id>only-eclipse</id>
204 <activation>
205 <property>
206 <name>m2e.version</name>
207 </property>
208 </activation>
209 <build>
210 <pluginManagement>
211 <plugins>
212 <plugin>
213 <groupId>org.eclipse.m2e</groupId>
214 <artifactId>lifecycle-mapping</artifactId>
215 <version>1.0.0</version>
216 <configuration>
217 <lifecycleMappingMetadata>
218 <pluginExecutions>
219 <pluginExecution>
220 <pluginExecutionFilter>
221 <groupId>org.kie</groupId>
222 <artifactId>kie-maven-plugin</artifactId>
223 <goals>
224 <goal>build</goal>
liamfallond065f5d2022-09-16 20:15:20 +0100225 <goal>generateANC</goal>
226 <goal>generateDMNModel</goal>
227 <goal>generateModel</goal>
228 <goal>generatePMMLModel</goal>
229 <goal>injectreactive</goal>
230 <goal>validateDMN</goal>
Jim Hahn6a37af42020-07-30 18:05:02 -0400231 </goals>
232 </pluginExecutionFilter>
233 <action>
234 <ignore />
235 </action>
236 </pluginExecution>
237 </pluginExecutions>
238 </lifecycleMappingMetadata>
239 </configuration>
240 </plugin>
241 </plugins>
242 </pluginManagement>
243 </build>
244 </profile>
245 </profiles>
246</project>