blob: 470aafcfe2dc69670ab3b3b002839799536ffdbc [file] [log] [blame]
Jorge Hernandezb918b692017-09-20 23:12:27 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP
4 ================================================================================
Pamela Dragoshacfe0632018-08-28 09:57:31 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
shaoqiue55d2562019-04-02 12:33:04 +00006 Modifications Copyright (C) 2019 Nordix Foundation.
Jorge Hernandezb918b692017-09-20 23:12:27 -05007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
liamfallonfd6a4f32018-10-31 16:54:18 +000022<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">
liamfallondef0f112018-02-13 11:29:56 +000023 <modelVersion>4.0.0</modelVersion>
Jorge Hernandezb918b692017-09-20 23:12:27 -050024
liamfallondef0f112018-02-13 11:29:56 +000025 <parent>
26 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
27 <artifactId>common</artifactId>
Jim Hahn3e5c2442019-09-10 12:04:00 -040028 <version>1.6.0-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000029 </parent>
30
31 <artifactId>feature-controlloop-utils</artifactId>
32
33 <description>
34 Loadable PDP-D feature module to enable simulator usage in a non-junit
35 lab environments. In a pdp-d lab environment this capability can be
36 enabled with the "feature" mechanisms.
37 </description>
38
39 <properties>
40 <maven.compiler.source>1.8</maven.compiler.source>
41 <maven.compiler.target>1.8</maven.compiler.target>
42 </properties>
43
44 <build>
45 <plugins>
46 <plugin>
47 <artifactId>maven-assembly-plugin</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000048 <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
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-dependency-plugin</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000070 <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 <transitive>false</transitive>
79 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
80 <overWriteReleases>false</overWriteReleases>
81 <overWriteSnapshots>true</overWriteSnapshots>
82 <overWriteIfNewer>true</overWriteIfNewer>
83 <useRepositoryLayout>false</useRepositoryLayout>
84 <addParentPoms>false</addParentPoms>
85 <copyPom>false</copyPom>
86 <includeScope>runtime</includeScope>
87 <excludeTransitive>true</excludeTransitive>
88 </configuration>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </build>
94
95 <dependencies>
96 <dependency>
97 <groupId>org.onap.policy.drools-pdp</groupId>
98 <artifactId>policy-management</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +010099 <version>${version.policy.drools-pdp}</version>
liamfallondef0f112018-02-13 11:29:56 +0000100 <scope>provided</scope>
101 </dependency>
102 <dependency>
mmise87b2f72018-07-23 12:22:07 +0100103 <groupId>org.onap.policy.common</groupId>
104 <artifactId>policy-endpoints</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +0100105 <version>${version.policy.common}</version>
mmise87b2f72018-07-23 12:22:07 +0100106 <scope>provided</scope>
107 </dependency>
108 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000109 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000110 <artifactId>simulators</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000111 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000112 </dependency>
113 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000114 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000115 <artifactId>aai</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000116 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000117 </dependency>
118 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000119 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000120 <artifactId>so</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000121 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000122 </dependency>
123 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000124 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
Vidyashree Ramab49dc8f2018-12-14 16:31:56 +0530125 <artifactId>sdnc</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000126 <version>${policy.models.version}</version>
Vidyashree Ramab49dc8f2018-12-14 16:31:56 +0530127 </dependency>
128 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000129 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000130 <artifactId>rest</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000131 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000132 </dependency>
133 <dependency>
134 <groupId>junit</groupId>
135 <artifactId>junit</artifactId>
liamfallondef0f112018-02-13 11:29:56 +0000136 <scope>test</scope>
137 </dependency>
138 </dependencies>
Jorge Hernandezb918b692017-09-20 23:12:27 -0500139</project>