Jim Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP |
| 5 | ================================================================================ |
jhh | 4b5cbc8 | 2022-11-04 11:53:50 -0500 | [diff] [blame] | 6 | Copyright (C) 2020-2022 AT&T Intellectual Property. All rights reserved. |
liamfallon | 2b51249 | 2023-02-17 19:17:27 +0000 | [diff] [blame^] | 7 | Modifications Copyright (C) 2023 Nordix Foundation. |
Jim Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 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>drools-applications-common</artifactId> |
liamfallon | 501f367 | 2022-12-16 12:30:32 +0000 | [diff] [blame] | 29 | <version>1.12.1-SNAPSHOT</version> |
Jim Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>controller-usecases</artifactId> |
Jim Hahn | ffdf210 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 33 | <packaging>kjar</packaging> |
Jim Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 34 | |
| 35 | <name>${project.artifactId}</name> |
| 36 | <description>Usecases Experimental Controller</description> |
| 37 | |
Jim Hahn | ffdf210 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 38 | <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 Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 48 | <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 Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 81 | <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 Hahn | 27c0d0c | 2021-07-20 17:34:22 -0400 | [diff] [blame] | 140 | <artifactId>actor.xacml</artifactId> |
Jim Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 141 | <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> |
jhh | 4b5cbc8 | 2022-11-04 11:53:50 -0500 | [diff] [blame] | 158 | <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 Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 164 | <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 Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 175 | <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 Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 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> |
liamfallon | d065f5d | 2022-09-16 20:15:20 +0100 | [diff] [blame] | 225 | <goal>generateANC</goal> |
| 226 | <goal>generateDMNModel</goal> |
| 227 | <goal>generateModel</goal> |
| 228 | <goal>generatePMMLModel</goal> |
| 229 | <goal>injectreactive</goal> |
| 230 | <goal>validateDMN</goal> |
Jim Hahn | 6a37af4 | 2020-07-30 18:05:02 -0400 | [diff] [blame] | 231 | </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> |