blob: 0b2a3b07300e72340df9e112c74f5f0a880c7b66 [file] [log] [blame]
Jim Hahna3fa1c62018-03-26 16:48:31 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -06005 Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
Jim Hahna3fa1c62018-03-26 16:48:31 -04006 ================================================================================
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 -->
Jim Hahna69e3a92018-04-05 13:27:38 -040020
liamfallon99200202018-10-31 16:00:08 +000021<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">
Jim Hahna69e3a92018-04-05 13:27:38 -040022
Pamela Dragoshfd307be2018-08-28 18:10:51 -040023 <modelVersion>4.0.0</modelVersion>
Jim Hahna69e3a92018-04-05 13:27:38 -040024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040028 <version>1.6.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040029 </parent>
Jim Hahna69e3a92018-04-05 13:27:38 -040030
Pamela Dragoshfd307be2018-08-28 18:10:51 -040031 <artifactId>feature-pooling-dmaap</artifactId>
Jim Hahna3fa1c62018-03-26 16:48:31 -040032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <name>feature-pooling-dmaap</name>
34 <description>Endpoints</description>
Jim Hahna3fa1c62018-03-26 16:48:31 -040035
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <properties>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040037 <jetty.version>9.3.20.v20170531</jetty.version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040038 </properties>
Jim Hahna69e3a92018-04-05 13:27:38 -040039
Pamela Dragoshfd307be2018-08-28 18:10:51 -040040 <build>
41 <plugins>
42 <plugin>
43 <artifactId>maven-assembly-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>zipfile</id>
47 <goals>
48 <goal>single</goal>
49 </goals>
50 <phase>package</phase>
51 <configuration>
52 <attach>true</attach>
53 <finalName>${project.artifactId}-${project.version}</finalName>
54 <descriptors>
55 <descriptor>src/assembly/assemble_zip.xml</descriptor>
56 </descriptors>
57 <appendAssemblyId>false</appendAssemblyId>
58 </configuration>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-dependency-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>copy-dependencies</id>
68 <goals>
69 <goal>copy-dependencies</goal>
70 </goals>
71 <phase>prepare-package</phase>
72 <configuration>
73 <transitive>false</transitive>
74 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
75 <overWriteReleases>false</overWriteReleases>
76 <overWriteSnapshots>true</overWriteSnapshots>
77 <overWriteIfNewer>true</overWriteIfNewer>
78 <useRepositoryLayout>false</useRepositoryLayout>
79 <addParentPoms>false</addParentPoms>
80 <copyPom>false</copyPom>
81 <includeScope>runtime</includeScope>
82 <excludeTransitive>true</excludeTransitive>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 </plugins>
88 </build>
Jim Hahna3fa1c62018-03-26 16:48:31 -040089
Pamela Dragoshfd307be2018-08-28 18:10:51 -040090 <dependencies>
Jim Hahna69e3a92018-04-05 13:27:38 -040091
Pamela Dragoshfd307be2018-08-28 18:10:51 -040092 <dependency>
93 <groupId>com.att.nsa</groupId>
94 <artifactId>cambriaClient</artifactId>
95 <exclusions>
96 <exclusion>
97 <groupId>org.slf4j</groupId>
98 <artifactId>slf4j-log4j12</artifactId>
99 </exclusion>
100 <exclusion>
101 <groupId>com.att.nsa</groupId>
102 <artifactId>saClientLibrary</artifactId>
103 </exclusion>
104 </exclusions>
105 <scope>provided</scope>
106 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400107
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400108 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400109 <groupId>ch.qos.logback</groupId>
110 <artifactId>logback-classic</artifactId>
111 <scope>provided</scope>
112 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400113
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400114 <dependency>
115 <groupId>org.onap.policy.drools-pdp</groupId>
116 <artifactId>policy-core</artifactId>
117 <version>${project.version}</version>
118 <scope>provided</scope>
119 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400120
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400121 <dependency>
122 <groupId>org.onap.policy.drools-pdp</groupId>
123 <artifactId>policy-management</artifactId>
124 <version>${project.version}</version>
125 <scope>provided</scope>
126 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400127
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400128 <dependency>
129 <groupId>junit</groupId>
130 <artifactId>junit</artifactId>
131 <scope>test</scope>
132 </dependency>
133
134 <dependency>
135 <groupId>org.onap.policy.common</groupId>
136 <artifactId>utils-test</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100137 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400138 <scope>test</scope>
139 </dependency>
140
141 <dependency>
142 <groupId>org.mockito</groupId>
143 <artifactId>mockito-core</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400144 <scope>test</scope>
145 </dependency>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500146
147 <dependency>
148 <groupId>org.assertj</groupId>
149 <artifactId>assertj-core</artifactId>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500150 <scope>test</scope>
151 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400152 </dependencies>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400153
154</project>