Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP |
| 5 | ================================================================================ |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 6 | Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 7 | Modifications Copyright (C) 2019 Nordix Foundation. |
Bruno Sakoto | 636a1b2 | 2019-09-27 16:15:49 -0400 | [diff] [blame] | 8 | Modifications Copyright (C) 2019 Bell Canada. |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 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 | |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +0000 | [diff] [blame] | 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"> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <parent> |
| 28 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 29 | <artifactId>common</artifactId> |
Jim Hahn | 3e5c244 | 2019-09-10 12:04:00 -0400 | [diff] [blame] | 30 | <version>1.6.0-SNAPSHOT</version> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 31 | </parent> |
| 32 | |
jhh | 6b3e0fc | 2019-04-01 07:29:36 -0500 | [diff] [blame] | 33 | <artifactId>controller-usecases</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 34 | <packaging>kjar</packaging> |
| 35 | |
| 36 | <name>${project.artifactId}</name> |
jhh | 6b3e0fc | 2019-04-01 07:29:36 -0500 | [diff] [blame] | 37 | <description>Usecases Experimental Controller</description> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 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> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 49 | <extensions>true</extensions> |
| 50 | </plugin> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 51 | </plugins> |
| 52 | </build> |
| 53 | |
| 54 | <dependencies> |
| 55 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 56 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 57 | <artifactId>events</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 58 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 59 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 60 | </dependency> |
| 61 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 62 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 63 | <artifactId>appc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 64 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 65 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 68 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 69 | <artifactId>appclcm</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 70 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 71 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 74 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Saravanan A | dbecba3 | 2018-09-10 17:31:33 +0530 | [diff] [blame] | 75 | <artifactId>sdnr</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 76 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 77 | <scope>provided</scope> |
Saravanan A | dbecba3 | 2018-09-10 17:31:33 +0530 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 80 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 81 | <artifactId>vfc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 82 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 83 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 84 | </dependency> |
| 85 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 86 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Xin Miao | 4498fc2 | 2018-10-01 18:09:24 -0500 | [diff] [blame] | 87 | <artifactId>sdnc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 88 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 89 | <scope>provided</scope> |
Xin Miao | 4498fc2 | 2018-10-01 18:09:24 -0500 | [diff] [blame] | 90 | </dependency> |
| 91 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 92 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 93 | <artifactId>so</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 94 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 95 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 96 | </dependency> |
| 97 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 98 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 99 | <artifactId>aai</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 100 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 101 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 102 | </dependency> |
| 103 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 104 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 105 | <artifactId>sdc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 106 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 107 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 108 | </dependency> |
| 109 | <dependency> |
Bruno Sakoto | 636a1b2 | 2019-09-27 16:15:49 -0400 | [diff] [blame] | 110 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 111 | <artifactId>cds</artifactId> |
| 112 | <version>${policy.models.version}</version> |
| 113 | <scope>provided</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 116 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 117 | <artifactId>eventmanager</artifactId> |
| 118 | <version>${project.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 119 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 123 | <artifactId>guard</artifactId> |
| 124 | <version>${project.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 125 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 126 | </dependency> |
| 127 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 128 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 129 | <artifactId>actorServiceProvider</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 130 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 131 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 132 | </dependency> |
| 133 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 134 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 135 | <artifactId>actor.appc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 136 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 137 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 140 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 141 | <artifactId>actor.appclcm</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 142 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 143 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 144 | </dependency> |
| 145 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 146 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Saravanan A | dbecba3 | 2018-09-10 17:31:33 +0530 | [diff] [blame] | 147 | <artifactId>actor.sdnr</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 148 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 149 | <scope>provided</scope> |
Saravanan A | dbecba3 | 2018-09-10 17:31:33 +0530 | [diff] [blame] | 150 | </dependency> |
| 151 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 152 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 153 | <artifactId>actor.so</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 154 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 155 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 156 | </dependency> |
| 157 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 158 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 159 | <artifactId>actor.vfc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 160 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 161 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 162 | </dependency> |
| 163 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 164 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
Xin Miao | 4498fc2 | 2018-10-01 18:09:24 -0500 | [diff] [blame] | 165 | <artifactId>actor.sdnc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 166 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 167 | <scope>provided</scope> |
Xin Miao | 4498fc2 | 2018-10-01 18:09:24 -0500 | [diff] [blame] | 168 | </dependency> |
| 169 | <dependency> |
Bruno Sakoto | 636a1b2 | 2019-09-27 16:15:49 -0400 | [diff] [blame] | 170 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 171 | <artifactId>actor.cds</artifactId> |
| 172 | <version>${policy.models.version}</version> |
| 173 | </dependency> |
| 174 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 175 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 176 | <artifactId>model-yaml</artifactId> |
| 177 | <version>${policy.models.version}</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 178 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 179 | </dependency> |
| 180 | <dependency> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 181 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 182 | <artifactId>policy-management</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 183 | <version>${version.policy.drools-pdp}</version> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 184 | <scope>provided</scope> |
| 185 | <optional>true</optional> |
| 186 | </dependency> |
Bruno Sakoto | 636a1b2 | 2019-09-27 16:15:49 -0400 | [diff] [blame] | 187 | <dependency> |
| 188 | <groupId>junit</groupId> |
| 189 | <artifactId>junit</artifactId> |
| 190 | <scope>test</scope> |
| 191 | </dependency> |
jhh | b41f82c | 2019-11-18 13:28:12 -0600 | [diff] [blame^] | 192 | <dependency> |
| 193 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 194 | <artifactId>simulators</artifactId> |
| 195 | <version>${policy.models.version}</version> |
| 196 | <scope>test</scope> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>org.awaitility</groupId> |
| 200 | <artifactId>awaitility</artifactId> |
| 201 | <version>4.0.1</version> |
| 202 | <scope>test</scope> |
| 203 | </dependency> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 204 | </dependencies> |
| 205 | |
liamfallon | d84ac8f | 2018-06-06 16:26:10 +0100 | [diff] [blame] | 206 | <profiles> |
| 207 | <profile> |
| 208 | <!--This profile is used to store Eclipse m2e settings only. It has no |
| 209 | influence on the Maven build itself. --> |
| 210 | <id>only-eclipse</id> |
| 211 | <activation> |
| 212 | <property> |
| 213 | <name>m2e.version</name> |
| 214 | </property> |
| 215 | </activation> |
| 216 | <build> |
| 217 | <pluginManagement> |
| 218 | <plugins> |
| 219 | <plugin> |
| 220 | <groupId>org.eclipse.m2e</groupId> |
| 221 | <artifactId>lifecycle-mapping</artifactId> |
| 222 | <version>1.0.0</version> |
| 223 | <configuration> |
| 224 | <lifecycleMappingMetadata> |
| 225 | <pluginExecutions> |
| 226 | <pluginExecution> |
| 227 | <pluginExecutionFilter> |
| 228 | <groupId>org.kie</groupId> |
| 229 | <artifactId>kie-maven-plugin</artifactId> |
liamfallon | d84ac8f | 2018-06-06 16:26:10 +0100 | [diff] [blame] | 230 | <goals> |
| 231 | <goal>build</goal> |
| 232 | </goals> |
| 233 | </pluginExecutionFilter> |
| 234 | <action> |
| 235 | <ignore /> |
| 236 | </action> |
| 237 | </pluginExecution> |
| 238 | </pluginExecutions> |
| 239 | </lifecycleMappingMetadata> |
| 240 | </configuration> |
| 241 | </plugin> |
| 242 | </plugins> |
| 243 | </pluginManagement> |
| 244 | </build> |
| 245 | </profile> |
| 246 | </profiles> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 247 | </project> |