blob: 21786a1444e28f2ebbf76f9843dc8ab55b680a74 [file] [log] [blame]
Jim Hahna3fa1c62018-03-26 16:48:31 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Jim Hahn7e4d3092019-01-08 17:48:31 -05005 Copyright (C) 2018-2019 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
liamfallon99200202018-10-31 16:00:08 +000021<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">
Jim Hahna69e3a92018-04-05 13:27:38 -040022
Pamela Dragoshfd307be2018-08-28 18:10:51 -040023 <modelVersion>4.0.0</modelVersion>
Jim Hahna69e3a92018-04-05 13:27:38 -040024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040028 <version>1.6.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040029 </parent>
Jim Hahna69e3a92018-04-05 13:27:38 -040030
Pamela Dragoshfd307be2018-08-28 18:10:51 -040031 <artifactId>feature-pooling-dmaap</artifactId>
Jim Hahna3fa1c62018-03-26 16:48:31 -040032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <name>feature-pooling-dmaap</name>
34 <description>Endpoints</description>
Jim Hahna3fa1c62018-03-26 16:48:31 -040035
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <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>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040040 </properties>
Jim Hahna69e3a92018-04-05 13:27:38 -040041
Pamela Dragoshfd307be2018-08-28 18:10:51 -040042 <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>
Jim Hahna3fa1c62018-03-26 16:48:31 -040091
Pamela Dragoshfd307be2018-08-28 18:10:51 -040092 <dependencies>
Jim Hahna69e3a92018-04-05 13:27:38 -040093
Pamela Dragoshfd307be2018-08-28 18:10:51 -040094 <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>
Jim Hahna69e3a92018-04-05 13:27:38 -0400109
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400110 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400111 <groupId>ch.qos.logback</groupId>
112 <artifactId>logback-classic</artifactId>
113 <scope>provided</scope>
114 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400115
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400116 <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>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400122
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400123 <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>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400129
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400130 <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>
ramverma5bf84862018-10-24 19:35:48 +0100139 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400140 <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>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500149
150 <dependency>
151 <groupId>org.assertj</groupId>
152 <artifactId>assertj-core</artifactId>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500153 <scope>test</scope>
154 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400155 </dependencies>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400156
157</project>