blob: 17dab9f14fc71b85639becacd0bfc3895a0826c4 [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.
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -05007 Modifications Copyright (C) 2020 Bell Canada.
Jorge Hernandezb918b692017-09-20 23:12:27 -05008 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 -->
22
liamfallonfd6a4f32018-10-31 16:54:18 +000023<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 +000024 <modelVersion>4.0.0</modelVersion>
Jorge Hernandezb918b692017-09-20 23:12:27 -050025
liamfallondef0f112018-02-13 11:29:56 +000026 <parent>
27 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -050028 <artifactId>drools-applications-common</artifactId>
a.sreekumar97c994c2020-05-26 13:37:53 +010029 <version>1.6.5-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000030 </parent>
31
32 <artifactId>feature-controlloop-utils</artifactId>
33
34 <description>
35 Loadable PDP-D feature module to enable simulator usage in a non-junit
36 lab environments. In a pdp-d lab environment this capability can be
37 enabled with the "feature" mechanisms.
38 </description>
39
40 <properties>
41 <maven.compiler.source>1.8</maven.compiler.source>
42 <maven.compiler.target>1.8</maven.compiler.target>
43 </properties>
44
45 <build>
46 <plugins>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000049 <executions>
50 <execution>
51 <id>zipfile</id>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 <phase>package</phase>
56 <configuration>
57 <attach>true</attach>
58 <finalName>${project.artifactId}-${project.version}</finalName>
59 <descriptors>
60 <descriptor>src/assembly/assemble_zip.xml</descriptor>
61 </descriptors>
62 <appendAssemblyId>false</appendAssemblyId>
63 </configuration>
64 </execution>
65 </executions>
66 </plugin>
67
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-dependency-plugin</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000071 <executions>
72 <execution>
73 <id>copy-dependencies</id>
74 <goals>
75 <goal>copy-dependencies</goal>
76 </goals>
77 <phase>prepare-package</phase>
78 <configuration>
79 <transitive>false</transitive>
80 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
81 <overWriteReleases>false</overWriteReleases>
82 <overWriteSnapshots>true</overWriteSnapshots>
83 <overWriteIfNewer>true</overWriteIfNewer>
84 <useRepositoryLayout>false</useRepositoryLayout>
85 <addParentPoms>false</addParentPoms>
86 <copyPom>false</copyPom>
87 <includeScope>runtime</includeScope>
88 <excludeTransitive>true</excludeTransitive>
89 </configuration>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
94 </build>
95
96 <dependencies>
97 <dependency>
98 <groupId>org.onap.policy.drools-pdp</groupId>
99 <artifactId>policy-management</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +0100100 <version>${version.policy.drools-pdp}</version>
liamfallondef0f112018-02-13 11:29:56 +0000101 <scope>provided</scope>
102 </dependency>
103 <dependency>
mmise87b2f72018-07-23 12:22:07 +0100104 <groupId>org.onap.policy.common</groupId>
105 <artifactId>policy-endpoints</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +0100106 <version>${version.policy.common}</version>
mmise87b2f72018-07-23 12:22:07 +0100107 <scope>provided</scope>
108 </dependency>
109 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000110 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000111 <artifactId>simulators</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000112 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000113 </dependency>
114 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000115 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000116 <artifactId>aai</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000117 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000118 </dependency>
119 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000120 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000121 <artifactId>so</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000122 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000123 </dependency>
124 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000125 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
Vidyashree Ramab49dc8f2018-12-14 16:31:56 +0530126 <artifactId>sdnc</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000127 <version>${policy.models.version}</version>
Vidyashree Ramab49dc8f2018-12-14 16:31:56 +0530128 </dependency>
129 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000130 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000131 <artifactId>rest</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000132 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000133 </dependency>
liamfallondef0f112018-02-13 11:29:56 +0000134 </dependencies>
Jorge Hernandezb918b692017-09-20 23:12:27 -0500135</project>