blob: 9fee2a8dcb32b342b72832ee0f77efb0760d275a [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 Hahna3fa1c62018-03-26 16:48:31 -040020
Jim Hahna69e3a92018-04-05 13:27:38 -040021<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
Jim Hahna3fa1c62018-03-26 16:48:31 -040026 <parent>
27 <groupId>org.onap.policy.drools-pdp</groupId>
28 <artifactId>drools-pdp</artifactId>
Pamela Dragoshabf9ea02018-04-13 14:25:19 -040029 <version>1.2.1-SNAPSHOT</version>
Jim Hahna3fa1c62018-03-26 16:48:31 -040030 </parent>
Jim Hahna69e3a92018-04-05 13:27:38 -040031
Jim Hahna3fa1c62018-03-26 16:48:31 -040032 <artifactId>feature-pooling-dmaap</artifactId>
Jim Hahna69e3a92018-04-05 13:27:38 -040033
34 <name>feature-pooling-dmaap</name>
Jim Hahna3fa1c62018-03-26 16:48:31 -040035 <description>Endpoints</description>
36
37 <properties>
38 <maven.compiler.source>1.8</maven.compiler.source>
39 <maven.compiler.target>1.8</maven.compiler.target>
40 <jetty.version>9.3.20.v20170531</jetty.version>
Jim Hahna69e3a92018-04-05 13:27:38 -040041 <powermock.version>1.6.6</powermock.version>
Jim Hahna3fa1c62018-03-26 16:48:31 -040042 </properties>
43
Jim Hahna69e3a92018-04-05 13:27:38 -040044 <build>
45 <plugins>
46 <plugin>
47 <artifactId>maven-assembly-plugin</artifactId>
48 <version>2.6</version>
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 <version>2.8</version>
71 <executions>
72 <execution>
73 <id>copy-dependencies</id>
74 <goals>
75 <goal>copy-dependencies</goal>
76 </goals>
77 <phase>prepare-package</phase>
78 <configuration>
79 <transitive>false</transitive>
80 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
81 <overWriteReleases>false</overWriteReleases>
82 <overWriteSnapshots>true</overWriteSnapshots>
83 <overWriteIfNewer>true</overWriteIfNewer>
84 <useRepositoryLayout>false</useRepositoryLayout>
85 <addParentPoms>false</addParentPoms>
86 <copyPom>false</copyPom>
87 <includeScope>runtime</includeScope>
88 <excludeTransitive>true</excludeTransitive>
89 </configuration>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
94 </build>
95
Jim Hahna3fa1c62018-03-26 16:48:31 -040096 <dependencies>
97
98 <dependency>
99 <groupId>com.att.nsa</groupId>
100 <artifactId>cambriaClient</artifactId>
101 <version>${cambria.version}</version>
102 <exclusions>
103 <exclusion>
104 <groupId>org.slf4j</groupId>
105 <artifactId>slf4j-log4j12</artifactId>
Jim Hahna69e3a92018-04-05 13:27:38 -0400106 </exclusion>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400107 <exclusion>
108 <groupId>com.att.nsa</groupId>
109 <artifactId>saClientLibrary</artifactId>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400110 </exclusion>
111 </exclusions>
112 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400113
Jim Hahna3fa1c62018-03-26 16:48:31 -0400114 <dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400115 <groupId>com.fasterxml.jackson.core</groupId>
116 <artifactId>jackson-core</artifactId>
117 <version>${jackson.version}</version>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400118 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400119
Jim Hahna3fa1c62018-03-26 16:48:31 -0400120 <dependency>
121 <groupId>com.fasterxml.jackson.core</groupId>
122 <artifactId>jackson-databind</artifactId>
123 <version>${jackson.version}</version>
124 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400125
126 <dependency>
127 <groupId>com.fasterxml.jackson.core</groupId>
128 <artifactId>jackson-annotations</artifactId>
129 <version>${jackson.version}</version>
130 </dependency>
131
Jim Hahna3fa1c62018-03-26 16:48:31 -0400132 <dependency>
133 <groupId>com.fasterxml.jackson.datatype</groupId>
134 <artifactId>jackson-datatype-jsr310</artifactId>
135 <version>${jackson.version}</version>
136 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400137
138 <dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400139 <groupId>ch.qos.logback</groupId>
140 <artifactId>logback-classic</artifactId>
Jim Hahna69e3a92018-04-05 13:27:38 -0400141 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400142
143 <dependency>
144 <groupId>org.onap.policy.drools-pdp</groupId>
145 <artifactId>policy-core</artifactId>
146 <version>${project.version}</version>
147 </dependency>
148
Jim Hahna69e3a92018-04-05 13:27:38 -0400149 <dependency>
150 <groupId>org.onap.policy.drools-pdp</groupId>
151 <artifactId>policy-management</artifactId>
152 <version>${project.version}</version>
153 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400154
155 <dependency>
156 <groupId>junit</groupId>
157 <artifactId>junit</artifactId>
158 <scope>test</scope>
159 </dependency>
160
161 <dependency>
162 <groupId>org.onap.policy.common</groupId>
163 <artifactId>utils-test</artifactId>
164 <version>${project.version}</version>
165 <scope>test</scope>
166 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400167
168 <dependency>
169 <groupId>org.mockito</groupId>
170 <artifactId>mockito-core</artifactId>
171 <version>2.13.0</version>
172 <scope>test</scope>
173 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400174 </dependencies>
175
176</project>