blob: 4a5ac21a8c913a297913d2d167e17e84052c3509 [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
3 PDP-D Application Installation Packages
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
liamfallonfd6a4f32018-10-31 16:54:18 +000021<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 +000022 <modelVersion>4.0.0</modelVersion>
23 <packaging>pom</packaging>
Pamela Dragosha6557b02017-02-14 19:49:32 -050024
liamfallondef0f112018-02-13 11:29:56 +000025 <parent>
26 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
27 <artifactId>packages</artifactId>
liamfallonfd6a4f32018-10-31 16:54:18 +000028 <version>1.4.0-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000029 </parent>
Pamela Dragosha6557b02017-02-14 19:49:32 -050030
Jorge Hernandez972fd702018-04-02 17:23:47 -050031 <artifactId>apps-controlloop</artifactId>
Pamela Dragosha6557b02017-02-14 19:49:32 -050032
Jorge Hernandez972fd702018-04-02 17:23:47 -050033 <name>apps-controlloop</name>
liamfallondef0f112018-02-13 11:29:56 +000034 <description>Drools Applications Installation Package</description>
Pamela Dragosha6557b02017-02-14 19:49:32 -050035
liamfallondef0f112018-02-13 11:29:56 +000036 <build>
37 <plugins>
38 <plugin>
39 <artifactId>maven-assembly-plugin</artifactId>
40 <executions>
41 <execution>
42 <goals>
43 <goal>single</goal>
44 </goals>
45 <phase>package</phase>
46 <configuration>
47 <descriptors>
48 <descriptor>src/assembly/zip.xml</descriptor>
49 </descriptors>
50 <appendAssemblyId>false</appendAssemblyId>
51 </configuration>
52 </execution>
53 </executions>
54 </plugin>
55 </plugins>
56 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050057
Jorge Hernandez972fd702018-04-02 17:23:47 -050058 <!-- List any dependencies here that should be included in the control loop app zip -->
liamfallondef0f112018-02-13 11:29:56 +000059 <dependencies>
60 <dependency>
61 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050062 <artifactId>basex-controlloop</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000063 <version>${project.version}</version>
64 <type>tar.gz</type>
65 </dependency>
66 <dependency>
67 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050068 <artifactId>artifacts-controlloop</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000069 <version>${project.version}</version>
70 <type>zip</type>
71 </dependency>
72 <dependency>
73 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
74 <artifactId>feature-controlloop-utils</artifactId>
75 <version>${project.version}</version>
76 <type>zip</type>
77 </dependency>
Jorge Hernandez2e975ab2018-03-25 23:50:23 -050078 <dependency>
79 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
80 <artifactId>feature-controlloop-trans</artifactId>
81 <version>${project.version}</version>
82 <type>zip</type>
83 </dependency>
Jorge Hernandez972fd702018-04-02 17:23:47 -050084 <dependency>
85 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
86 <artifactId>feature-controlloop-amsterdam</artifactId>
87 <version>${project.version}</version>
88 <type>zip</type>
89 </dependency>
90 <dependency>
91 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
Jim Hahn93fc6342018-08-02 16:40:41 -040092 <artifactId>feature-controlloop-casablanca</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050093 <version>${project.version}</version>
94 <type>zip</type>
95 </dependency>
liamfallondef0f112018-02-13 11:29:56 +000096 </dependencies>
Pamela Dragosha6557b02017-02-14 19:49:32 -050097
98</project>
99