blob: d09427425accf09295dd7727ecc2a10675910e80 [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 Hahna69e3a92018-04-05 13:27:38 -040020
Pamela Dragoshfd307be2018-08-28 18:10:51 -040021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 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 -040024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <modelVersion>4.0.0</modelVersion>
Jim Hahna69e3a92018-04-05 13:27:38 -040026
Pamela Dragoshfd307be2018-08-28 18:10:51 -040027 <parent>
28 <groupId>org.onap.policy.drools-pdp</groupId>
29 <artifactId>drools-pdp</artifactId>
30 <version>1.3.0-SNAPSHOT</version>
31 </parent>
Jim Hahna69e3a92018-04-05 13:27:38 -040032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <artifactId>feature-pooling-dmaap</artifactId>
Jim Hahna3fa1c62018-03-26 16:48:31 -040034
Pamela Dragoshfd307be2018-08-28 18:10:51 -040035 <name>feature-pooling-dmaap</name>
36 <description>Endpoints</description>
Jim Hahna3fa1c62018-03-26 16:48:31 -040037
Pamela Dragoshfd307be2018-08-28 18:10:51 -040038 <properties>
39 <maven.compiler.source>1.8</maven.compiler.source>
40 <maven.compiler.target>1.8</maven.compiler.target>
41 <jetty.version>9.3.20.v20170531</jetty.version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040042 </properties>
Jim Hahna69e3a92018-04-05 13:27:38 -040043
Pamela Dragoshfd307be2018-08-28 18:10:51 -040044 <build>
45 <plugins>
46 <plugin>
47 <artifactId>maven-assembly-plugin</artifactId>
48 <executions>
49 <execution>
50 <id>zipfile</id>
51 <goals>
52 <goal>single</goal>
53 </goals>
54 <phase>package</phase>
55 <configuration>
56 <attach>true</attach>
57 <finalName>${project.artifactId}-${project.version}</finalName>
58 <descriptors>
59 <descriptor>src/assembly/assemble_zip.xml</descriptor>
60 </descriptors>
61 <appendAssemblyId>false</appendAssemblyId>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-dependency-plugin</artifactId>
69 <executions>
70 <execution>
71 <id>copy-dependencies</id>
72 <goals>
73 <goal>copy-dependencies</goal>
74 </goals>
75 <phase>prepare-package</phase>
76 <configuration>
77 <transitive>false</transitive>
78 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
79 <overWriteReleases>false</overWriteReleases>
80 <overWriteSnapshots>true</overWriteSnapshots>
81 <overWriteIfNewer>true</overWriteIfNewer>
82 <useRepositoryLayout>false</useRepositoryLayout>
83 <addParentPoms>false</addParentPoms>
84 <copyPom>false</copyPom>
85 <includeScope>runtime</includeScope>
86 <excludeTransitive>true</excludeTransitive>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
Jim Hahna3fa1c62018-03-26 16:48:31 -040093
Pamela Dragoshfd307be2018-08-28 18:10:51 -040094 <dependencies>
Jim Hahna69e3a92018-04-05 13:27:38 -040095
Pamela Dragoshfd307be2018-08-28 18:10:51 -040096 <dependency>
97 <groupId>com.att.nsa</groupId>
98 <artifactId>cambriaClient</artifactId>
99 <exclusions>
100 <exclusion>
101 <groupId>org.slf4j</groupId>
102 <artifactId>slf4j-log4j12</artifactId>
103 </exclusion>
104 <exclusion>
105 <groupId>com.att.nsa</groupId>
106 <artifactId>saClientLibrary</artifactId>
107 </exclusion>
108 </exclusions>
109 <scope>provided</scope>
110 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400111
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400112 <dependency>
113 <groupId>com.fasterxml.jackson.core</groupId>
114 <artifactId>jackson-core</artifactId>
115 <version>${jackson.version}</version>
116 <scope>provided</scope>
117 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400118
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400119 <dependency>
120 <groupId>com.fasterxml.jackson.core</groupId>
121 <artifactId>jackson-databind</artifactId>
122 <version>${jackson.version}</version>
123 <scope>provided</scope>
124 </dependency>
Jim Hahna69e3a92018-04-05 13:27:38 -0400125
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400126 <dependency>
127 <groupId>com.fasterxml.jackson.core</groupId>
128 <artifactId>jackson-annotations</artifactId>
129 <version>${jackson.version}</version>
130 <scope>provided</scope>
131 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400132
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400133 <dependency>
134 <groupId>com.fasterxml.jackson.datatype</groupId>
135 <artifactId>jackson-datatype-jsr310</artifactId>
136 <version>${jackson.version}</version>
137 <scope>provided</scope>
138 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400139
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400140 <dependency>
141 <groupId>ch.qos.logback</groupId>
142 <artifactId>logback-classic</artifactId>
143 <scope>provided</scope>
144 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400145
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400146 <dependency>
147 <groupId>org.onap.policy.drools-pdp</groupId>
148 <artifactId>policy-core</artifactId>
149 <version>${project.version}</version>
150 <scope>provided</scope>
151 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400152
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400153 <dependency>
154 <groupId>org.onap.policy.drools-pdp</groupId>
155 <artifactId>policy-management</artifactId>
156 <version>${project.version}</version>
157 <scope>provided</scope>
158 </dependency>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400159
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400160 <dependency>
161 <groupId>junit</groupId>
162 <artifactId>junit</artifactId>
163 <scope>test</scope>
164 </dependency>
165
166 <dependency>
167 <groupId>org.onap.policy.common</groupId>
168 <artifactId>utils-test</artifactId>
169 <version>${project.version}</version>
170 <scope>test</scope>
171 </dependency>
172
173 <dependency>
174 <groupId>org.mockito</groupId>
175 <artifactId>mockito-core</artifactId>
176 <version>2.13.0</version>
177 <scope>test</scope>
178 </dependency>
179 </dependencies>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400180
181</project>