blob: 058b61485e0fe1e47101edaaa4437797e81978f7 [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<!--
2 ============LICENSE_START=======================================================
3 Policy Packages
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
Ram Krishna Verma565dc1f2020-02-05 16:51:06 -05006 Modifications Copyright (C) 2020 Bell Canada.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05007 ================================================================================
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
jhh420fb312019-04-04 12:03:30 -050011
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050012 http://www.apache.org/licenses/LICENSE-2.0
jhh420fb312019-04-04 12:03:30 -050013
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050014 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
jhh420fb312019-04-04 12:03:30 -050022<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 Dragosh0e16acf2017-02-14 19:45:48 -050025
jhh420fb312019-04-04 12:03:30 -050026 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050027
jhh420fb312019-04-04 12:03:30 -050028 <parent>
29 <groupId>org.onap.policy.drools-pdp</groupId>
Ram Krishna Verma565dc1f2020-02-05 16:51:06 -050030 <artifactId>drools-packages</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040031 <version>1.6.0-SNAPSHOT</version>
jhh420fb312019-04-04 12:03:30 -050032 </parent>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050033
jhh420fb312019-04-04 12:03:30 -050034 <artifactId>install-drools</artifactId>
35 <packaging>pom</packaging>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050036
jhh420fb312019-04-04 12:03:30 -050037 <name>Installation Package</name>
38 <description>ONAP Policy Drools PDP Installation Package</description>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050039
jhh420fb312019-04-04 12:03:30 -050040 <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 Dragosh0e16acf2017-02-14 19:45:48 -050061
jhh420fb312019-04-04 12:03:30 -050062 <!-- 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 Hahn9d6c5032018-04-24 11:11:02 -0400112 <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 Cruz62e42812019-02-22 11:31:17 -0600124 <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 Cruz89d34412019-03-22 08:33:29 -0500130 <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>
jhh420fb312019-04-04 12:03:30 -0500136 <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 Dragosh0e16acf2017-02-14 19:45:48 -0500143
144</project>