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> |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +0000 | [diff] [blame^] | 28 | <version>1.4.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>apps-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>apps-controlloop</name> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 34 | <description>Drools Applications Installation Package</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> |
| 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 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 | <!-- List any dependencies here that should be included in the control loop app zip --> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 59 | <dependencies> |
| 60 | <dependency> |
| 61 | <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 62 | <artifactId>basex-controlloop</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 63 | <version>${project.version}</version> |
| 64 | <type>tar.gz</type> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 68 | <artifactId>artifacts-controlloop</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 69 | <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 Hernandez | 2e975ab | 2018-03-25 23:50:23 -0500 | [diff] [blame] | 78 | <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 Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 84 | <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 Hahn | 93fc634 | 2018-08-02 16:40:41 -0400 | [diff] [blame] | 92 | <artifactId>feature-controlloop-casablanca</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 93 | <version>${project.version}</version> |
| 94 | <type>zip</type> |
| 95 | </dependency> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 96 | </dependencies> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 97 | |
| 98 | </project> |
| 99 | |