Bump drools-apps to 1.7.6 SNAPSHOT
[policy/drools-applications.git] / controlloop / common / controller-tdjam / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP
5   ================================================================================
6   Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
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>
28         <version>1.7.6-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>controller-tdjam</artifactId>
32     <packaging>kjar</packaging>
33
34     <name>${project.artifactId}</name>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.kie</groupId>
40                 <artifactId>kie-maven-plugin</artifactId>
41                 <extensions>true</extensions>
42             </plugin>
43         </plugins>
44     </build>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
49             <artifactId>events</artifactId>
50             <version>${policy.models.version}</version>
51             <scope>provided</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
55             <artifactId>aai</artifactId>
56             <version>${policy.models.version}</version>
57             <scope>provided</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
61             <artifactId>appc</artifactId>
62             <version>${policy.models.version}</version>
63             <scope>provided</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
67             <artifactId>appclcm</artifactId>
68             <version>${policy.models.version}</version>
69             <scope>provided</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
73             <artifactId>cds</artifactId>
74             <version>${policy.models.version}</version>
75             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
79             <artifactId>sdnc</artifactId>
80             <version>${policy.models.version}</version>
81             <scope>provided</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
85             <artifactId>sdnr</artifactId>
86             <version>${policy.models.version}</version>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
91             <artifactId>so</artifactId>
92             <version>${policy.models.version}</version>
93             <scope>provided</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
97             <artifactId>vfc</artifactId>
98             <version>${policy.models.version}</version>
99             <scope>provided</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
103             <artifactId>eventmanager</artifactId>
104             <version>${project.version}</version>
105             <scope>provided</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
109             <artifactId>actorServiceProvider</artifactId>
110             <version>${policy.models.version}</version>
111             <scope>provided</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
115             <artifactId>actor.aai</artifactId>
116             <version>${policy.models.version}</version>
117             <scope>provided</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
121             <artifactId>actor.appc</artifactId>
122             <version>${policy.models.version}</version>
123             <scope>provided</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
127             <artifactId>actor.appclcm</artifactId>
128             <version>${policy.models.version}</version>
129             <scope>provided</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
133             <artifactId>actor.cds</artifactId>
134             <version>${policy.models.version}</version>
135         </dependency>
136         <dependency>
137             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
138             <artifactId>actor.guard</artifactId>
139             <version>${policy.models.version}</version>
140             <scope>provided</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
144             <artifactId>actor.sdnc</artifactId>
145             <version>${policy.models.version}</version>
146             <scope>provided</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
150             <artifactId>actor.sdnr</artifactId>
151             <version>${policy.models.version}</version>
152             <scope>provided</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
156             <artifactId>actor.so</artifactId>
157             <version>${policy.models.version}</version>
158             <scope>provided</scope>
159         </dependency>
160         <dependency>
161             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
162             <artifactId>actor.vfc</artifactId>
163             <version>${policy.models.version}</version>
164             <scope>provided</scope>
165         </dependency>
166         <dependency>
167             <groupId>org.onap.policy.drools-pdp</groupId>
168             <artifactId>policy-management</artifactId>
169             <version>${version.policy.drools-pdp}</version>
170             <scope>provided</scope>
171         </dependency>
172         <dependency>
173             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
174             <artifactId>rules-test</artifactId>
175             <version>${project.version}</version>
176             <scope>test</scope>
177         </dependency>
178         <dependency>
179             <groupId>com.h2database</groupId>
180             <artifactId>h2</artifactId>
181             <scope>test</scope>
182         </dependency>
183     </dependencies>
184
185     <profiles>
186         <profile>
187             <!--This profile is used to store Eclipse m2e settings only. It has no
188                 influence on the Maven build itself. -->
189             <id>only-eclipse</id>
190             <activation>
191                 <property>
192                     <name>m2e.version</name>
193                 </property>
194             </activation>
195             <build>
196                 <pluginManagement>
197                     <plugins>
198                         <plugin>
199                             <groupId>org.eclipse.m2e</groupId>
200                             <artifactId>lifecycle-mapping</artifactId>
201                             <version>1.0.0</version>
202                             <configuration>
203                                 <lifecycleMappingMetadata>
204                                     <pluginExecutions>
205                                         <pluginExecution>
206                                             <pluginExecutionFilter>
207                                                 <groupId>org.kie</groupId>
208                                                 <artifactId>kie-maven-plugin</artifactId>
209                                                 <goals>
210                                                     <goal>build</goal>
211                                                 </goals>
212                                             </pluginExecutionFilter>
213                                             <action>
214                                                 <ignore />
215                                             </action>
216                                         </pluginExecution>
217                                     </pluginExecutions>
218                                 </lifecycleMappingMetadata>
219                             </configuration>
220                         </plugin>
221                     </plugins>
222                 </pluginManagement>
223             </build>
224         </profile>
225     </profiles>
226 </project>