blob: 9a1c965cb5c1c092415c33869587f5e890560ed4 [file] [log] [blame]
Jim Hahna3fa1c62018-03-26 16:48:31 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Jim Hahna69e3a92018-04-05 13:27:38 -04005 Copyright (C) 2018 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
Pamela Dragoshfd307be2018-08-28 18:10:51 -040021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 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 -040024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <modelVersion>4.0.0</modelVersion>
Jim Hahna69e3a92018-04-05 13:27:38 -040026
Pamela Dragoshfd307be2018-08-28 18:10:51 -040027 <parent>
28 <groupId>org.onap.policy.drools-pdp</groupId>
29 <artifactId>drools-pdp</artifactId>
30 <version>1.3.0-SNAPSHOT</version>
31 </parent>
Jim Hahna69e3a92018-04-05 13:27:38 -040032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <artifactId>feature-pooling-dmaap</artifactId>
Jim Hahna3fa1c62018-03-26 16:48:31 -040034
Pamela Dragoshfd307be2018-08-28 18:10:51 -040035 <name>feature-pooling-dmaap</name>
36 <description>Endpoints</description>
Jim Hahna3fa1c62018-03-26 16:48:31 -040037
Pamela Dragoshfd307be2018-08-28 18:10:51 -040038 <properties>
39 <maven.compiler.source>1.8</maven.compiler.source>
40 <maven.compiler.target>1.8</maven.compiler.target>
41 <jetty.version>9.3.20.v20170531</jetty.version>
42 <powermock.version>1.6.6</powermock.version>
43 </properties>
Jim Hahna69e3a92018-04-05 13:27:38 -040044
Pamela Dragoshfd307be2018-08-28 18:10:51 -040045 <build>
46 <plugins>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
49 <executions>
50 <execution>
51 <id>zipfile</id>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 <phase>package</phase>
56 <configuration>
57 <attach>true</attach>
58 <finalName>${project.artifactId}-${project.version}</finalName>
59 <descriptors>
60 <descriptor>src/assembly/assemble_zip.xml</descriptor>
61 </descriptors>
62 <appendAssemblyId>false</appendAssemblyId>
63 </configuration>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-dependency-plugin</artifactId>
70 <executions>
71 <execution>
72 <id>copy-dependencies</id>
73 <goals>
74 <goal>copy-dependencies</goal>
75 </goals>
76 <phase>prepare-package</phase>
77 <configuration>
78 <transitive>false</transitive>
79 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
80 <overWriteReleases>false</overWriteReleases>
81 <overWriteSnapshots>true</overWriteSnapshots>
82 <overWriteIfNewer>true</overWriteIfNewer>
83 <useRepositoryLayout>false</useRepositoryLayout>
84 <addParentPoms>false</addParentPoms>
85 <copyPom>false</copyPom>
86 <includeScope>runtime</includeScope>
87 <excludeTransitive>true</excludeTransitive>
88 </configuration>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </build>
Jim Hahna3fa1c62018-03-26 16:48:31 -040094
Pamela Dragoshfd307be2018-08-28 18:10:51 -040095 <dependencies>
Jim Hahna69e3a92018-04-05 13:27:38 -040096
Pamela Dragoshfd307be2018-08-28 18:10:51 -040097 <dependency>
98 <groupId>com.att.nsa</groupId>
99 <artifactId>cambriaClient</artifactId>
100 <exclusions>
101 <exclusion>
102 <groupId>org.slf4j</groupId>
103 <artifactId>slf4j-log4j12</artifactId>
104 </exclusion>
105 <exclusion>
106 <groupId>com.att.nsa</groupId>
107 <artifactId>saClientLibrary</artifactId>
108 </exclusion>
109 </exclusions>
110 <scope>provided</scope>
111 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400112
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400113 <dependency>
114 <groupId>com.fasterxml.jackson.core</groupId>
115 <artifactId>jackson-core</artifactId>
116 <version>${jackson.version}</version>
117 <scope>provided</scope>
118 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400119
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400120 <dependency>
121 <groupId>com.fasterxml.jackson.core</groupId>
122 <artifactId>jackson-databind</artifactId>
123 <version>${jackson.version}</version>
124 <scope>provided</scope>
125 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400126
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400127 <dependency>
128 <groupId>com.fasterxml.jackson.core</groupId>
129 <artifactId>jackson-annotations</artifactId>
130 <version>${jackson.version}</version>
131 <scope>provided</scope>
132 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400133
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400134 <dependency>
135 <groupId>com.fasterxml.jackson.datatype</groupId>
136 <artifactId>jackson-datatype-jsr310</artifactId>
137 <version>${jackson.version}</version>
138 <scope>provided</scope>
139 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400140
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400141 <dependency>
142 <groupId>ch.qos.logback</groupId>
143 <artifactId>logback-classic</artifactId>
144 <scope>provided</scope>
145 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400146
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400147 <dependency>
148 <groupId>org.onap.policy.drools-pdp</groupId>
149 <artifactId>policy-core</artifactId>
150 <version>${project.version}</version>
151 <scope>provided</scope>
152 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400153
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400154 <dependency>
155 <groupId>org.onap.policy.drools-pdp</groupId>
156 <artifactId>policy-management</artifactId>
157 <version>${project.version}</version>
158 <scope>provided</scope>
159 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400160
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400161 <dependency>
162 <groupId>junit</groupId>
163 <artifactId>junit</artifactId>
164 <scope>test</scope>
165 </dependency>
166
167 <dependency>
168 <groupId>org.onap.policy.common</groupId>
169 <artifactId>utils-test</artifactId>
170 <version>${project.version}</version>
171 <scope>test</scope>
172 </dependency>
173
174 <dependency>
175 <groupId>org.mockito</groupId>
176 <artifactId>mockito-core</artifactId>
177 <version>2.13.0</version>
178 <scope>test</scope>
179 </dependency>
180 </dependencies>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400181
182</project>