blob: 3dd7b9572b789bcbb741ef9575b0ce2ebfee591b [file] [log] [blame]
Jorge Hernandezc9f47ef2018-03-23 01:14:12 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP
4 ================================================================================
5 Copyright (C) 2018 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"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
27 <artifactId>common</artifactId>
liamfallon4cfda9c2018-06-05 16:41:35 +010028 <version>1.3.0-SNAPSHOT</version>
Jorge Hernandezc9f47ef2018-03-23 01:14:12 -050029 </parent>
30
31 <artifactId>feature-controlloop-trans</artifactId>
32
33 <description>
34 Loadable PDP-D feature module to track control loop transactions
35 </description>
36
37 <properties>
38 <maven.compiler.source>1.8</maven.compiler.source>
39 <maven.compiler.target>1.8</maven.compiler.target>
40 </properties>
41
42 <build>
43 <plugins>
44 <plugin>
45 <artifactId>maven-assembly-plugin</artifactId>
46 <version>2.6</version>
47 <executions>
48 <execution>
49 <id>zipfile</id>
50 <goals>
51 <goal>single</goal>
52 </goals>
53 <phase>package</phase>
54 <configuration>
55 <attach>true</attach>
56 <finalName>${project.artifactId}-${project.version}</finalName>
57 <descriptors>
58 <descriptor>src/assembly/assemble_zip.xml</descriptor>
59 </descriptors>
60 <appendAssemblyId>false</appendAssemblyId>
61 </configuration>
62 </execution>
63 </executions>
64 </plugin>
65
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-dependency-plugin</artifactId>
69 <version>2.8</version>
70 <executions>
71 <execution>
72 <id>copy-dependencies</id>
73 <goals>
74 <goal>copy-dependencies</goal>
75 </goals>
76 <phase>prepare-package</phase>
77 <configuration>
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 </configuration>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </build>
92
93 <dependencies>
94 <dependency>
95 <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId>
96 <artifactId>events</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <dependency>
mmise87b2f72018-07-23 12:22:07 +0100100 <groupId>org.onap.policy.common</groupId>
101 <artifactId>policy-endpoints</artifactId>
102 <version>${project.version}</version>
103 <scope>provided</scope>
104 </dependency>
105 <dependency>
Jorge Hernandezc9f47ef2018-03-23 01:14:12 -0500106 <groupId>org.onap.policy.drools-pdp</groupId>
107 <artifactId>policy-management</artifactId>
108 <version>${project.version}</version>
109 <scope>provided</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.onap.policy.drools-pdp</groupId>
113 <artifactId>policy-utils</artifactId>
114 <version>${project.version}</version>
115 <scope>provided</scope>
116 </dependency>
117 <dependency>
118 <groupId>junit</groupId>
119 <artifactId>junit</artifactId>
120 <version>4.12</version>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>com.google.guava</groupId>
125 <artifactId>guava</artifactId>
126 <version>19.0</version>
127 <scope>provided</scope>
128 </dependency>
129 </dependencies>
130</project>