Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | PDP-D Application Installation Packages |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 Bell Canada. |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 7 | Modifications Copyright (C) 2023 Nordix Foundation. |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 8 | ================================================================================ |
| 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.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 12 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 13 | http://www.apache.org/licenses/LICENSE-2.0 |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 14 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 15 | 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.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 23 | <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 Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 27 | |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId> |
| 30 | <artifactId>drools-applications-packages</artifactId> |
rameshiyer27 | c408905 | 2024-11-19 12:52:14 +0000 | [diff] [blame^] | 31 | <version>3.0.2-SNAPSHOT</version> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 32 | </parent> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 33 | |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 34 | <artifactId>artifacts-controlloop</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 35 | |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 36 | <name>artifacts-controlloop</name> |
| 37 | <description>Companion artifacts for a drools application to install in nexus repository</description> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 38 | |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 39 | <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 Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 60 | |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame] | 61 | <dependencies> |
| 62 | <!-- Placed here any Control Loop Application Dependencies to be |
| 63 | installed in local nexus instance: currently none necessary --> |
| 64 | </dependencies> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 65 | </project> |