blob: 931dc6dbbd9f6100007316a7c4e15f0c820265ea [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.
adheli.tavaresfc191782023-08-30 14:57:10 +01007 Modifications Copyright (C) 2023 Nordix Foundation.
Pamela Dragosha6557b02017-02-14 19:49:32 -05008 ================================================================================
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
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060012
Pamela Dragosha6557b02017-02-14 19:49:32 -050013 http://www.apache.org/licenses/LICENSE-2.0
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060014
Pamela Dragosha6557b02017-02-14 19:49:32 -050015 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
adheli.tavaresfc191782023-08-30 14:57:10 +010023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>pom</packaging>
Pamela Dragosha6557b02017-02-14 19:49:32 -050027
adheli.tavaresfc191782023-08-30 14:57:10 +010028 <parent>
29 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
30 <artifactId>drools-applications-packages</artifactId>
rameshiyer27c4089052024-11-19 12:52:14 +000031 <version>3.0.2-SNAPSHOT</version>
adheli.tavaresfc191782023-08-30 14:57:10 +010032 </parent>
Pamela Dragosha6557b02017-02-14 19:49:32 -050033
adheli.tavaresfc191782023-08-30 14:57:10 +010034 <artifactId>apps-controlloop</artifactId>
Pamela Dragosha6557b02017-02-14 19:49:32 -050035
adheli.tavaresfc191782023-08-30 14:57:10 +010036 <name>apps-controlloop</name>
37 <description>Drools Applications Installation Package</description>
Pamela Dragosha6557b02017-02-14 19:49:32 -050038
adheli.tavaresfc191782023-08-30 14:57:10 +010039 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>generate-complete-zip</id>
46 <phase>package</phase>
47 <goals>
48 <goal>single</goal>
49 </goals>
50 <configuration>
51 <descriptors>
52 <descriptor>src/assembly/zip.xml</descriptor>
53 </descriptors>
54 <appendAssemblyId>false</appendAssemblyId>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050061
adheli.tavaresfc191782023-08-30 14:57:10 +010062 <!-- List any dependencies here that should be included in the control loop app zip -->
63 <dependencies>
64 <dependency>
65 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
66 <artifactId>basex-controlloop</artifactId>
67 <version>${project.version}</version>
68 <type>tar.gz</type>
69 </dependency>
70 <dependency>
71 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
72 <artifactId>artifacts-controlloop</artifactId>
73 <version>${project.version}</version>
74 <type>zip</type>
75 </dependency>
76 <dependency>
77 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
78 <artifactId>feature-controlloop-management</artifactId>
79 <version>${project.version}</version>
80 <type>zip</type>
81 </dependency>
82 <dependency>
83 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
84 <artifactId>feature-controlloop-utils</artifactId>
85 <version>${project.version}</version>
86 <type>zip</type>
87 </dependency>
88 <dependency>
89 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
90 <artifactId>feature-controlloop-trans</artifactId>
91 <version>${project.version}</version>
92 <type>zip</type>
93 </dependency>
94 <dependency>
95 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
96 <artifactId>feature-controlloop-usecases</artifactId>
97 <version>${project.version}</version>
98 <type>zip</type>
99 </dependency>
100 </dependencies>
Pamela Dragosha6557b02017-02-14 19:49:32 -0500101
102</project>
103