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. |
| 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 | |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +0000 | [diff] [blame] | 21 | <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"> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <packaging>pom</packaging> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 24 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId> |
| 27 | <artifactId>packages</artifactId> |
Jim Hahn | 3e5c244 | 2019-09-10 12:04:00 -0400 | [diff] [blame] | 28 | <version>1.6.0-SNAPSHOT</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 29 | </parent> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 30 | |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 31 | <artifactId>artifacts-controlloop</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 32 | |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 33 | <name>artifacts-controlloop</name> |
| 34 | <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] | 35 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 36 | <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> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 48 | <descriptor>src/assembly/zip.xml</descriptor> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 49 | </descriptors> |
| 50 | <appendAssemblyId>false</appendAssemblyId> |
| 51 | </configuration> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | </plugins> |
| 56 | </build> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 57 | |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 58 | <dependencies> |
| 59 | <!-- Placed here any Control Loop Application Dependencies to be |
| 60 | installed in local nexus instance: currently none necessary --> |
| 61 | </dependencies> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 62 | </project> |