blob: eb34f30fca351c63201ca53647edd376ea4b0ad8 [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.
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -05006 Modifications Copyright (C) 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
adheli.tavaresfc191782023-08-30 14:57:10 +010012
Pamela Dragosha6557b02017-02-14 19:49:32 -050013 http://www.apache.org/licenses/LICENSE-2.0
adheli.tavaresfc191782023-08-30 14:57:10 +010014
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>artifacts-controlloop</artifactId>
Pamela Dragosha6557b02017-02-14 19:49:32 -050035
adheli.tavaresfc191782023-08-30 14:57:10 +010036 <name>artifacts-controlloop</name>
37 <description>Companion artifacts for a drools application to install in nexus repository</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 <goals>
46 <goal>single</goal>
47 </goals>
48 <phase>package</phase>
49 <configuration>
50 <descriptors>
51 <descriptor>src/assembly/zip.xml</descriptor>
52 </descriptors>
53 <appendAssemblyId>false</appendAssemblyId>
54 </configuration>
55 </execution>
56 </executions>
57 </plugin>
58 </plugins>
59 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050060
adheli.tavaresfc191782023-08-30 14:57:10 +010061 <dependencies>
62 <!-- Placed here any Control Loop Application Dependencies to be
63 installed in local nexus instance: currently none necessary -->
64 </dependencies>
Pamela Dragosha6557b02017-02-14 19:49:32 -050065</project>