blob: 51d50ff9a0d5d157f3b2131ab517a1f6b5de8dd4 [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>
Pamela Dragosh77465092019-06-14 15:21:32 -040027 <version>1.4.3-SNAPSHOT</version>
Jorge Hernandez972fd702018-04-02 17:23:47 -050028 </parent>
29
jhh6b3e0fc2019-04-01 07:29:36 -050030 <artifactId>feature-controlloop-usecases</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050031
32 <description>
jhh6b3e0fc2019-04-01 07:29:36 -050033 Load Experimental Usecases Control Loop Use Cases Controller as a feature.
Jorge Hernandez972fd702018-04-02 17:23:47 -050034 </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 <resources>
43 <resource>
44 <directory>src/main/feature</directory>
45 <filtering>true</filtering>
46 </resource>
47 </resources>
48 <plugins>
49 <plugin>
50 <artifactId>maven-assembly-plugin</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050051 <executions>
52 <execution>
53 <id>zipfile</id>
54 <goals>
55 <goal>single</goal>
56 </goals>
57 <phase>package</phase>
58 <configuration>
59 <attach>true</attach>
60 <finalName>${project.artifactId}-${project.version}</finalName>
61 <descriptors>
62 <descriptor>src/assembly/assemble_zip.xml</descriptor>
63 </descriptors>
64 <appendAssemblyId>false</appendAssemblyId>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-dependency-plugin</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -050073 <executions>
74 <execution>
75 <id>copy-dependencies</id>
76 <goals>
77 <goal>copy-dependencies</goal>
78 </goals>
79 <phase>prepare-package</phase>
80 <configuration>
81 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
82 <overWriteReleases>false</overWriteReleases>
83 <overWriteSnapshots>true</overWriteSnapshots>
84 <overWriteIfNewer>true</overWriteIfNewer>
85 <useRepositoryLayout>false</useRepositoryLayout>
86 <addParentPoms>false</addParentPoms>
87 <copyPom>false</copyPom>
88 <includeScope>runtime</includeScope>
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060089 <excludeTransitive>true</excludeTransitive>
Jorge Hernandez972fd702018-04-02 17:23:47 -050090 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
95 </build>
96
97 <dependencies>
98 <dependency>
Jorge Hernandez972fd702018-04-02 17:23:47 -050099 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
jhh6b3e0fc2019-04-01 07:29:36 -0500100 <artifactId>controller-usecases</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500101 <version>${project.version}</version>
102 </dependency>
103 <dependency>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500104 <groupId>org.onap.policy.drools-pdp</groupId>
105 <artifactId>policy-management</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +0100106 <version>${version.policy.drools-pdp}</version>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500107 <scope>provided</scope>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500108 </dependency>
109 <dependency>
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
Jorge Hernandez972fd702018-04-02 17:23:47 -0500112 <scope>test</scope>
113 </dependency>
114 </dependencies>
115</project>