Release policy/drools-pdp
[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.12.1</version>
29     </parent>
30
31     <artifactId>feature-pooling-dmaap</artifactId>
32
33     <name>feature-pooling-dmaap</name>
34     <description>Endpoints</description>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <artifactId>maven-assembly-plugin</artifactId>
40                 <executions>
41                     <execution>
42                         <id>zipfile</id>
43                         <goals>
44                             <goal>single</goal>
45                         </goals>
46                         <phase>package</phase>
47                         <configuration>
48                             <attach>true</attach>
49                             <finalName>${project.artifactId}-${project.version}</finalName>
50                             <descriptors>
51                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
52                             </descriptors>
53                             <appendAssemblyId>false</appendAssemblyId>
54                         </configuration>
55                     </execution>
56                 </executions>
57             </plugin>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-dependency-plugin</artifactId>
61                 <executions>
62                     <execution>
63                         <id>copy-dependencies</id>
64                         <goals>
65                             <goal>copy-dependencies</goal>
66                         </goals>
67                         <phase>prepare-package</phase>
68                         <configuration>
69                             <transitive>false</transitive>
70                             <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
71                             <overWriteReleases>false</overWriteReleases>
72                             <overWriteSnapshots>true</overWriteSnapshots>
73                             <overWriteIfNewer>true</overWriteIfNewer>
74                             <useRepositoryLayout>false</useRepositoryLayout>
75                             <addParentPoms>false</addParentPoms>
76                             <copyPom>false</copyPom>
77                             <includeScope>runtime</includeScope>
78                             <excludeTransitive>true</excludeTransitive>
79                         </configuration>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84     </build>
85
86     <dependencies>
87
88         <dependency>
89             <groupId>com.att.nsa</groupId>
90             <artifactId>cambriaClient</artifactId>
91             <exclusions>
92                 <exclusion>
93                     <groupId>org.slf4j</groupId>
94                     <artifactId>slf4j-log4j12</artifactId>
95                 </exclusion>
96                 <exclusion>
97                     <groupId>com.att.nsa</groupId>
98                     <artifactId>saClientLibrary</artifactId>
99                 </exclusion>
100             </exclusions>
101             <scope>provided</scope>
102         </dependency>
103
104         <dependency>
105             <groupId>ch.qos.logback</groupId>
106             <artifactId>logback-classic</artifactId>
107             <scope>provided</scope>
108         </dependency>
109
110         <dependency>
111             <groupId>org.onap.policy.drools-pdp</groupId>
112             <artifactId>policy-core</artifactId>
113             <version>${project.version}</version>
114             <scope>provided</scope>
115         </dependency>
116
117         <dependency>
118             <groupId>org.onap.policy.drools-pdp</groupId>
119             <artifactId>policy-management</artifactId>
120             <version>${project.version}</version>
121             <scope>provided</scope>
122         </dependency>
123
124         <dependency>
125             <groupId>junit</groupId>
126             <artifactId>junit</artifactId>
127             <scope>test</scope>
128         </dependency>
129
130         <dependency>
131             <groupId>org.onap.policy.common</groupId>
132             <artifactId>utils-test</artifactId>
133             <version>${policy.common.version}</version>
134             <scope>test</scope>
135         </dependency>
136
137         <dependency>
138             <groupId>org.mockito</groupId>
139             <artifactId>mockito-core</artifactId>
140             <scope>test</scope>
141         </dependency>
142         
143         <dependency>
144             <groupId>org.assertj</groupId>
145             <artifactId>assertj-core</artifactId>
146             <scope>test</scope>
147         </dependency>
148     </dependencies>
149
150 </project>