blob: 015fefca201fa81d0758d66eb8e7cb2102c125f7 [file] [log] [blame]
Jorge Hernandez972fd702018-04-02 17:23:47 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP
4 ================================================================================
Jorge Hernandezbdc051b2019-01-07 11:21:18 -06005 Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
Jorge Hernandez972fd702018-04-02 17:23:47 -05006 ================================================================================
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
liamfallonfd6a4f32018-10-31 16:54:18 +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">
Jorge Hernandez972fd702018-04-02 17:23:47 -050022 <modelVersion>4.0.0</modelVersion>
23
24 <parent>
25 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
26 <artifactId>common</artifactId>
jhh569250e2020-05-29 16:05:41 -050027 <version>1.5.5-SNAPSHOT</version>
Jorge Hernandez972fd702018-04-02 17:23:47 -050028 </parent>
29
30 <artifactId>feature-controlloop-amsterdam</artifactId>
31
32 <description>
33 Load Amsterdam Control Loop Use Cases Controller as a feature.
34 </description>
35
36 <properties>
37 <maven.compiler.source>1.8</maven.compiler.source>
38 <maven.compiler.target>1.8</maven.compiler.target>
39 </properties>
40
41 <build>
42 <plugins>
43 <plugin>
44 <artifactId>maven-assembly-plugin</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050045 <executions>
46 <execution>
47 <id>zipfile</id>
48 <goals>
49 <goal>single</goal>
50 </goals>
51 <phase>package</phase>
52 <configuration>
53 <attach>true</attach>
54 <finalName>${project.artifactId}-${project.version}</finalName>
55 <descriptors>
56 <descriptor>src/assembly/assemble_zip.xml</descriptor>
57 </descriptors>
58 <appendAssemblyId>false</appendAssemblyId>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-dependency-plugin</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050067 <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 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
76 <overWriteReleases>false</overWriteReleases>
77 <overWriteSnapshots>true</overWriteSnapshots>
78 <overWriteIfNewer>true</overWriteIfNewer>
79 <useRepositoryLayout>false</useRepositoryLayout>
80 <addParentPoms>false</addParentPoms>
81 <copyPom>false</copyPom>
82 <includeScope>runtime</includeScope>
83 <excludeTransitive>false</excludeTransitive>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
Jorge Hernandez972fd702018-04-02 17:23:47 -050093 <groupId>org.onap.policy.drools-pdp</groupId>
94 <artifactId>policy-management</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +010095 <version>${version.policy.drools-pdp}</version>
Jorge Hernandez972fd702018-04-02 17:23:47 -050096 <scope>provided</scope>
Jorge Hernandez972fd702018-04-02 17:23:47 -050097 </dependency>
98 <dependency>
99 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500101 <scope>test</scope>
102 </dependency>
103 </dependencies>
104</project>