blob: 5d58213002fad9ef60ad5ef2ab034dde3c18b2ac [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
Jorge Hernandezbdc051b2019-01-07 11:21:18 -06003 ONAP
Pamela Dragosha6557b02017-02-14 19:49:32 -05004 ================================================================================
Taka Choc88f0972020-09-01 13:13:02 -04005 Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -05006 Modifications Copyright (C) 2019-2020 Bell Canada.
Pamela Dragosha6557b02017-02-14 19:49:32 -05007 ================================================================================
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
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060011
Pamela Dragosha6557b02017-02-14 19:49:32 -050012 http://www.apache.org/licenses/LICENSE-2.0
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060013
Pamela Dragosha6557b02017-02-14 19:49:32 -050014 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
liamfallonfd6a4f32018-10-31 16:54:18 +000022<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">
liamfallondef0f112018-02-13 11:29:56 +000023 <modelVersion>4.0.0</modelVersion>
24 <packaging>pom</packaging>
Pamela Dragosha6557b02017-02-14 19:49:32 -050025
liamfallondef0f112018-02-13 11:29:56 +000026 <parent>
27 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -050028 <artifactId>drools-applications-packages</artifactId>
Jim Hahnc3879a52020-07-10 18:36:16 -040029 <version>1.7.1-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000030 </parent>
Pamela Dragosha6557b02017-02-14 19:49:32 -050031
Jorge Hernandez972fd702018-04-02 17:23:47 -050032 <artifactId>apps-controlloop</artifactId>
Pamela Dragosha6557b02017-02-14 19:49:32 -050033
Jorge Hernandez972fd702018-04-02 17:23:47 -050034 <name>apps-controlloop</name>
liamfallondef0f112018-02-13 11:29:56 +000035 <description>Drools Applications Installation Package</description>
Pamela Dragosha6557b02017-02-14 19:49:32 -050036
liamfallondef0f112018-02-13 11:29:56 +000037 <build>
38 <plugins>
39 <plugin>
Rashmi Pujar19cade12019-06-03 17:14:45 -040040 <artifactId>maven-assembly-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>generate-complete-zip</id>
44 <phase>package</phase>
45 <goals>
46 <goal>single</goal>
47 </goals>
48 <configuration>
49 <descriptors>
50 <descriptor>src/assembly/zip.xml</descriptor>
51 </descriptors>
52 <appendAssemblyId>false</appendAssemblyId>
53 </configuration>
54 </execution>
55 </executions>
liamfallondef0f112018-02-13 11:29:56 +000056 </plugin>
57 </plugins>
58 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050059
Jorge Hernandez972fd702018-04-02 17:23:47 -050060 <!-- List any dependencies here that should be included in the control loop app zip -->
liamfallondef0f112018-02-13 11:29:56 +000061 <dependencies>
62 <dependency>
63 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050064 <artifactId>basex-controlloop</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000065 <version>${project.version}</version>
66 <type>tar.gz</type>
67 </dependency>
68 <dependency>
69 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050070 <artifactId>artifacts-controlloop</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000071 <version>${project.version}</version>
72 <type>zip</type>
73 </dependency>
74 <dependency>
75 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
Jorge Hernandez5506fd82018-12-13 10:10:43 -060076 <artifactId>feature-controlloop-management</artifactId>
77 <version>${project.version}</version>
78 <type>zip</type>
79 </dependency>
80 <dependency>
81 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
liamfallondef0f112018-02-13 11:29:56 +000082 <artifactId>feature-controlloop-utils</artifactId>
83 <version>${project.version}</version>
84 <type>zip</type>
85 </dependency>
Jorge Hernandez2e975ab2018-03-25 23:50:23 -050086 <dependency>
87 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
88 <artifactId>feature-controlloop-trans</artifactId>
89 <version>${project.version}</version>
90 <type>zip</type>
91 </dependency>
Jorge Hernandez972fd702018-04-02 17:23:47 -050092 <dependency>
93 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
Jim Hahn50c693b2020-03-13 12:14:39 -040094 <artifactId>feature-controlloop-frankfurt</artifactId>
95 <version>${project.version}</version>
96 <type>zip</type>
97 </dependency>
98 <dependency>
99 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
jhh6b3e0fc2019-04-01 07:29:36 -0500100 <artifactId>feature-controlloop-usecases</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500101 <version>${project.version}</version>
102 <type>zip</type>
103 </dependency>
Taka Choc88f0972020-09-01 13:13:02 -0400104 <dependency>
105 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
106 <artifactId>feature-controlloop-tdjam</artifactId>
107 <version>${project.version}</version>
108 <type>zip</type>
109 </dependency>
liamfallondef0f112018-02-13 11:29:56 +0000110 </dependencies>
Pamela Dragosha6557b02017-02-14 19:49:32 -0500111
112</project>
113