02878bca771c30cc4432d9dfbf3103849689c490
[policy/drools-pdp.git] / feature-pooling-dmaap / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - Drools PDP
4   ================================================================================
5   Copyright (C) 2018-2020 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.10.2-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         <jetty.version>9.3.20.v20170531</jetty.version>
38     </properties>
39
40     <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>
89
90     <dependencies>
91
92         <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>
107
108         <dependency>
109             <groupId>ch.qos.logback</groupId>
110             <artifactId>logback-classic</artifactId>
111             <scope>provided</scope>
112         </dependency>
113
114         <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>
120
121         <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>
127
128         <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>
137             <version>${policy.common.version}</version>
138             <scope>test</scope>
139         </dependency>
140
141         <dependency>
142             <groupId>org.mockito</groupId>
143             <artifactId>mockito-core</artifactId>
144             <scope>test</scope>
145         </dependency>
146         
147         <dependency>
148             <groupId>org.assertj</groupId>
149             <artifactId>assertj-core</artifactId>
150             <scope>test</scope>
151         </dependency>
152     </dependencies>
153
154 </project>