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 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 28 | <artifactId>packages</artifactId> |
| 29 | <version>1.0.0-SNAPSHOT</version> |
| 30 | </parent> |
| 31 | |
| 32 | <artifactId>artifacts</artifactId> |
| 33 | <packaging>pom</packaging> |
| 34 | |
| 35 | <name>Artifacts for PDP-D Applications</name> |
| 36 | <description>PDP-D models, rules and tooling</description> |
| 37 | |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <artifactId>maven-assembly-plugin</artifactId> |
| 42 | <executions> |
| 43 | <execution> |
| 44 | <goals> |
| 45 | <goal>single</goal> |
| 46 | </goals> |
| 47 | <phase>package</phase> |
| 48 | <configuration> |
| 49 | <descriptors> |
| 50 | <descriptor>src/assembly/zip.xml</descriptor> |
| 51 | </descriptors> |
| 52 | <appendAssemblyId>false</appendAssemblyId> |
| 53 | </configuration> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | <!-- The following are placed in the local repository at installation --> |
| 61 | <dependencies> |
| 62 | <dependency> |
| 63 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 64 | <artifactId>drools-pdp-apps</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | <type>pom</type> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 70 | <artifactId>demo</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | <type>jar</type> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 76 | <artifactId>controlloop</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | <type>jar</type> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 82 | <artifactId>rest</artifactId> |
| 83 | <version>${project.version}</version> |
| 84 | <type>jar</type> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 88 | <artifactId>appc</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | <type>jar</type> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 94 | <artifactId>aai</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | <type>jar</type> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 100 | <artifactId>mso</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | <type>jar</type> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 106 | <artifactId>trafficgenerator</artifactId> |
| 107 | <version>${project.version}</version> |
| 108 | <type>jar</type> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 112 | <artifactId>vfwsim</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | <type>jar</type> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.openecomp.policy.drools-applications</groupId> |
| 118 | <artifactId>archetype-closedloop-demo-rules</artifactId> |
| 119 | <version>${project.version}</version> |
| 120 | <type>jar</type> |
| 121 | </dependency> |
| 122 | </dependencies> |
| 123 | |
| 124 | </project> |