Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Policy Packages |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | 565dc1f | 2020-02-05 16:51:06 -0500 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 Bell Canada. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 11 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 13 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | 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"> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 25 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 27 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.policy.drools-pdp</groupId> |
Ram Krishna Verma | 565dc1f | 2020-02-05 16:51:06 -0500 | [diff] [blame] | 30 | <artifactId>drools-packages</artifactId> |
Jim Hahn | 89a8e32 | 2019-09-10 11:22:40 -0400 | [diff] [blame] | 31 | <version>1.6.0-SNAPSHOT</version> |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 32 | </parent> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 33 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 34 | <artifactId>install-drools</artifactId> |
| 35 | <packaging>pom</packaging> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 36 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 37 | <name>Installation Package</name> |
| 38 | <description>ONAP Policy Drools PDP Installation Package</description> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 39 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <artifactId>maven-assembly-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <goals> |
| 47 | <goal>single</goal> |
| 48 | </goals> |
| 49 | <phase>package</phase> |
| 50 | <configuration> |
| 51 | <descriptors> |
| 52 | <descriptor>src/assembly/zip.xml</descriptor> |
| 53 | </descriptors> |
| 54 | <appendAssemblyId>false</appendAssemblyId> |
| 55 | </configuration> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 61 | |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 62 | <!-- List any dependencies here that should be included in the installer zip --> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 66 | <artifactId>base</artifactId> |
| 67 | <version>${project.version}</version> |
| 68 | <type>tar.gz</type> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 72 | <artifactId>policy-management</artifactId> |
| 73 | <version>${project.version}</version> |
| 74 | <type>zip</type> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 78 | <artifactId>feature-healthcheck</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | <type>zip</type> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 84 | <artifactId>feature-eelf</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | <type>zip</type> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 90 | <artifactId>feature-session-persistence</artifactId> |
| 91 | <version>${project.version}</version> |
| 92 | <type>zip</type> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 96 | <artifactId>feature-test-transaction</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | <type>zip</type> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 102 | <artifactId>feature-state-management</artifactId> |
| 103 | <version>${project.version}</version> |
| 104 | <type>zip</type> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 108 | <artifactId>feature-active-standby-management</artifactId> |
| 109 | <version>${project.version}</version> |
| 110 | <type>zip</type> |
| 111 | </dependency> |
Jim Hahn | 9d6c503 | 2018-04-24 11:11:02 -0400 | [diff] [blame] | 112 | <dependency> |
| 113 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 114 | <artifactId>feature-distributed-locking</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | <type>zip</type> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 120 | <artifactId>feature-pooling-dmaap</artifactId> |
| 121 | <version>${project.version}</version> |
| 122 | <type>zip</type> |
| 123 | </dependency> |
Daniel Cruz | 62e4281 | 2019-02-22 11:31:17 -0600 | [diff] [blame] | 124 | <dependency> |
| 125 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 126 | <artifactId>feature-controller-logging</artifactId> |
| 127 | <version>${project.version}</version> |
| 128 | <type>zip</type> |
| 129 | </dependency> |
Daniel Cruz | 89d3441 | 2019-03-22 08:33:29 -0500 | [diff] [blame] | 130 | <dependency> |
| 131 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 132 | <artifactId>feature-mdc-filters</artifactId> |
| 133 | <version>${project.version}</version> |
| 134 | <type>zip</type> |
| 135 | </dependency> |
jhh | 420fb31 | 2019-04-04 12:03:30 -0500 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 138 | <artifactId>feature-lifecycle</artifactId> |
| 139 | <version>${project.version}</version> |
| 140 | <type>zip</type> |
| 141 | </dependency> |
| 142 | </dependencies> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 143 | |
| 144 | </project> |