Remove jackson from feature-pooling-dmaap
[policy/drools-pdp.git] / feature-pooling-dmaap / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - Drools PDP
4   ================================================================================
5   Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
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   -->
20
21 <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">
22
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.policy.drools-pdp</groupId>
27         <artifactId>drools-pdp</artifactId>
28         <version>1.4.0-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>feature-pooling-dmaap</artifactId>
32
33     <name>feature-pooling-dmaap</name>
34     <description>Endpoints</description>
35
36     <properties>
37         <maven.compiler.source>1.8</maven.compiler.source>
38         <maven.compiler.target>1.8</maven.compiler.target>
39         <jetty.version>9.3.20.v20170531</jetty.version>
40     </properties>
41
42     <build>
43         <plugins>
44             <plugin>
45                 <artifactId>maven-assembly-plugin</artifactId>
46                 <executions>
47                     <execution>
48                         <id>zipfile</id>
49                         <goals>
50                             <goal>single</goal>
51                         </goals>
52                         <phase>package</phase>
53                         <configuration>
54                             <attach>true</attach>
55                             <finalName>${project.artifactId}-${project.version}</finalName>
56                             <descriptors>
57                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
58                             </descriptors>
59                             <appendAssemblyId>false</appendAssemblyId>
60                         </configuration>
61                     </execution>
62                 </executions>
63             </plugin>
64             <plugin>
65                 <groupId>org.apache.maven.plugins</groupId>
66                 <artifactId>maven-dependency-plugin</artifactId>
67                 <executions>
68                     <execution>
69                         <id>copy-dependencies</id>
70                         <goals>
71                             <goal>copy-dependencies</goal>
72                         </goals>
73                         <phase>prepare-package</phase>
74                         <configuration>
75                             <transitive>false</transitive>
76                             <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
77                             <overWriteReleases>false</overWriteReleases>
78                             <overWriteSnapshots>true</overWriteSnapshots>
79                             <overWriteIfNewer>true</overWriteIfNewer>
80                             <useRepositoryLayout>false</useRepositoryLayout>
81                             <addParentPoms>false</addParentPoms>
82                             <copyPom>false</copyPom>
83                             <includeScope>runtime</includeScope>
84                             <excludeTransitive>true</excludeTransitive>
85                         </configuration>
86                     </execution>
87                 </executions>
88             </plugin>
89         </plugins>
90     </build>
91
92     <dependencies>
93
94         <dependency>
95             <groupId>com.att.nsa</groupId>
96             <artifactId>cambriaClient</artifactId>
97             <exclusions>
98                 <exclusion>
99                     <groupId>org.slf4j</groupId>
100                     <artifactId>slf4j-log4j12</artifactId>
101                 </exclusion>
102                 <exclusion>
103                     <groupId>com.att.nsa</groupId>
104                     <artifactId>saClientLibrary</artifactId>
105                 </exclusion>
106             </exclusions>
107             <scope>provided</scope>
108         </dependency>
109
110         <dependency>
111             <groupId>ch.qos.logback</groupId>
112             <artifactId>logback-classic</artifactId>
113             <scope>provided</scope>
114         </dependency>
115
116         <dependency>
117             <groupId>org.onap.policy.drools-pdp</groupId>
118             <artifactId>policy-core</artifactId>
119             <version>${project.version}</version>
120             <scope>provided</scope>
121         </dependency>
122
123         <dependency>
124             <groupId>org.onap.policy.drools-pdp</groupId>
125             <artifactId>policy-management</artifactId>
126             <version>${project.version}</version>
127             <scope>provided</scope>
128         </dependency>
129
130         <dependency>
131             <groupId>junit</groupId>
132             <artifactId>junit</artifactId>
133             <scope>test</scope>
134         </dependency>
135
136         <dependency>
137             <groupId>org.onap.policy.common</groupId>
138             <artifactId>utils-test</artifactId>
139             <version>${policy.common.version}</version>
140             <scope>test</scope>
141         </dependency>
142
143         <dependency>
144             <groupId>org.mockito</groupId>
145             <artifactId>mockito-core</artifactId>
146             <version>2.13.0</version>
147             <scope>test</scope>
148         </dependency>
149         
150         <dependency>
151             <groupId>org.assertj</groupId>
152             <artifactId>assertj-core</artifactId>
153             <version>3.11.1</version>
154             <scope>test</scope>
155         </dependency>
156     </dependencies>
157
158 </project>