blob: fc00a508866ecb5341d09d67f1ad61fcf65ab4b8 [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.
liamfallon2b512492023-02-17 19:17:27 +00007 Modifications Copyright (C) 2023 Nordix Foundation.
Jim Hahn6a37af42020-07-30 18:05:02 -04008 ================================================================================
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>drools-applications-common</artifactId>
liamfallon501f3672022-12-16 12:30:32 +000029 <version>1.12.1-SNAPSHOT</version>
Jim Hahn6a37af42020-07-30 18:05:02 -040030 </parent>
31
32 <artifactId>controller-usecases</artifactId>
Jim Hahnffdf2102020-07-30 18:05:02 -040033 <packaging>kjar</packaging>
Jim Hahn6a37af42020-07-30 18:05:02 -040034
35 <name>${project.artifactId}</name>
36 <description>Usecases Experimental Controller</description>
37
Jim Hahnffdf2102020-07-30 18:05:02 -040038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.kie</groupId>
42 <artifactId>kie-maven-plugin</artifactId>
43 <extensions>true</extensions>
44 </plugin>
45 </plugins>
46 </build>
47
Jim Hahn6a37af42020-07-30 18:05:02 -040048 <dependencies>
49 <dependency>
50 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
51 <artifactId>events</artifactId>
52 <version>${policy.models.version}</version>
53 <scope>provided</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
57 <artifactId>aai</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>cds</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>
Jim Hahn6a37af42020-07-30 18:05:02 -040081 <artifactId>sdnc</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>sdnr</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>vfc</artifactId>
100 <version>${policy.models.version}</version>
101 <scope>provided</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
105 <artifactId>eventmanager</artifactId>
106 <version>${project.version}</version>
107 <scope>provided</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
111 <artifactId>actorServiceProvider</artifactId>
112 <version>${policy.models.version}</version>
113 <scope>provided</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
117 <artifactId>actor.aai</artifactId>
118 <version>${policy.models.version}</version>
119 <scope>provided</scope>
120 </dependency>
121 <dependency>
122 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
123 <artifactId>actor.appc</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.appclcm</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.cds</artifactId>
136 <version>${policy.models.version}</version>
137 </dependency>
138 <dependency>
139 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
Jim Hahn27c0d0c2021-07-20 17:34:22 -0400140 <artifactId>actor.xacml</artifactId>
Jim Hahn6a37af42020-07-30 18:05:02 -0400141 <version>${policy.models.version}</version>
142 <scope>provided</scope>
143 </dependency>
144 <dependency>
145 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
146 <artifactId>actor.sdnc</artifactId>
147 <version>${policy.models.version}</version>
148 <scope>provided</scope>
149 </dependency>
150 <dependency>
151 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
152 <artifactId>actor.sdnr</artifactId>
153 <version>${policy.models.version}</version>
154 <scope>provided</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
jhh4b5cbc82022-11-04 11:53:50 -0500158 <artifactId>actor.a1p</artifactId>
159 <version>${policy.models.version}</version>
160 <scope>provided</scope>
161 </dependency>
162 <dependency>
163 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
Jim Hahn6a37af42020-07-30 18:05:02 -0400164 <artifactId>actor.so</artifactId>
165 <version>${policy.models.version}</version>
166 <scope>provided</scope>
167 </dependency>
168 <dependency>
169 <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
170 <artifactId>actor.vfc</artifactId>
171 <version>${policy.models.version}</version>
172 <scope>provided</scope>
173 </dependency>
174 <dependency>
Jim Hahn6a37af42020-07-30 18:05:02 -0400175 <groupId>org.onap.policy.drools-pdp</groupId>
176 <artifactId>policy-management</artifactId>
177 <version>${version.policy.drools-pdp}</version>
178 <scope>provided</scope>
179 <optional>true</optional>
180 </dependency>
181 <dependency>
182 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
183 <artifactId>rules-test</artifactId>
184 <version>${project.version}</version>
185 <scope>test</scope>
186 </dependency>
187 <dependency>
188 <groupId>org.onap.policy.common</groupId>
189 <artifactId>utils-test</artifactId>
190 <version>${version.policy.common}</version>
191 <scope>test</scope>
192 </dependency>
193 <dependency>
194 <groupId>com.h2database</groupId>
195 <artifactId>h2</artifactId>
196 <scope>test</scope>
197 </dependency>
198 </dependencies>
199
200 <profiles>
201 <profile>
202 <!--This profile is used to store Eclipse m2e settings only. It has no
203 influence on the Maven build itself. -->
204 <id>only-eclipse</id>
205 <activation>
206 <property>
207 <name>m2e.version</name>
208 </property>
209 </activation>
210 <build>
211 <pluginManagement>
212 <plugins>
213 <plugin>
214 <groupId>org.eclipse.m2e</groupId>
215 <artifactId>lifecycle-mapping</artifactId>
Jim Hahn6a37af42020-07-30 18:05:02 -0400216 <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>