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> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 27 | <groupId>org.onap.policy.drools-applications</groupId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 28 | <artifactId>packages</artifactId> |
Pamela Dragosh | 3428341 | 2017-03-10 15:43:17 -0500 | [diff] [blame] | 29 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 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 | |
Jorge Hernandez | 8860779 | 2017-08-08 15:09:08 -0500 | [diff] [blame] | 60 | <!-- The following are placed in the local or remote repository at installation --> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 61 | <dependencies> |
| 62 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 63 | <groupId>org.onap.policy.drools-applications</groupId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 64 | <artifactId>drools-pdp-apps</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | <type>pom</type> |
| 67 | </dependency> |
| 68 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 69 | <groupId>org.onap.policy.drools-applications</groupId> |
Gao, Chenfei (cg287m) | 0ba72f3 | 2017-07-24 15:41:27 -0400 | [diff] [blame] | 70 | <artifactId>controlloop</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 71 | <version>${project.version}</version> |
Gao, Chenfei (cg287m) | 0ba72f3 | 2017-07-24 15:41:27 -0400 | [diff] [blame] | 72 | <type>pom</type> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.onap.policy.drools-applications</groupId> |
| 76 | <artifactId>common</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | <type>pom</type> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.onap.policy.drools-applications</groupId> |
| 82 | <artifactId>model-impl</artifactId> |
| 83 | <version>${project.version}</version> |
| 84 | <type>pom</type> |
| 85 | </dependency> |
| 86 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 87 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 88 | <groupId>org.onap.policy.drools-applications</groupId> |
| 89 | <artifactId>events</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 90 | <version>${project.version}</version> |
| 91 | <type>jar</type> |
| 92 | </dependency> |
| 93 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 94 | <groupId>org.onap.policy.drools-applications</groupId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 95 | <artifactId>appc</artifactId> |
| 96 | <version>${project.version}</version> |
| 97 | <type>jar</type> |
| 98 | </dependency> |
Ritu Sood | 1c4fcf4 | 2017-08-23 07:52:20 -0700 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>org.onap.policy.drools-applications</groupId> |
| 101 | <artifactId>vfc</artifactId> |
| 102 | <version>${project.version}</version> |
| 103 | <type>jar</type> |
| 104 | </dependency> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 105 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 106 | <groupId>org.onap.policy.drools-applications</groupId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 107 | <artifactId>aai</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | <type>jar</type> |
| 110 | </dependency> |
| 111 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 112 | <groupId>org.onap.policy.drools-applications</groupId> |
Jorge Hernandez | 5a2b471 | 2017-09-18 11:26:58 -0500 | [diff] [blame] | 113 | <artifactId>so</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 114 | <version>${project.version}</version> |
| 115 | <type>jar</type> |
| 116 | </dependency> |
| 117 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 118 | <groupId>org.onap.policy.drools-applications</groupId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 119 | <artifactId>trafficgenerator</artifactId> |
| 120 | <version>${project.version}</version> |
| 121 | <type>jar</type> |
Gao, Chenfei (cg287m) | 0ba72f3 | 2017-07-24 15:41:27 -0400 | [diff] [blame] | 122 | </dependency> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 123 | <dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 124 | <groupId>org.onap.policy.drools-applications</groupId> |
Gao, Chenfei (cg287m) | 0ba72f3 | 2017-07-24 15:41:27 -0400 | [diff] [blame] | 125 | <artifactId>eventmanager</artifactId> |
| 126 | <version>${project.version}</version> |
| 127 | <type>jar</type> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.onap.policy.drools-applications</groupId> |
| 131 | <artifactId>guard</artifactId> |
| 132 | <version>${project.version}</version> |
| 133 | <type>jar</type> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.onap.policy.drools-applications</groupId> |
| 137 | <artifactId>policy-yaml</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 138 | <version>${project.version}</version> |
| 139 | <type>jar</type> |
| 140 | </dependency> |
Jorge Hernandez | 8860779 | 2017-08-08 15:09:08 -0500 | [diff] [blame] | 141 | <dependency> |
| 142 | <groupId>org.onap.policy.drools-applications</groupId> |
| 143 | <artifactId>demo</artifactId> |
| 144 | <version>${project.version}</version> |
| 145 | <type>jar</type> |
| 146 | </dependency> |
| 147 | <dependency> |
| 148 | <groupId>org.onap.policy.drools-applications</groupId> |
| 149 | <artifactId>template.demo</artifactId> |
| 150 | <version>${project.version}</version> |
| 151 | <type>jar</type> |
| 152 | </dependency> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 153 | </dependencies> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 154 | </project> |