blob: 11cf2400e9c738fd282517561ee72f9b2e249799 [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.
adheli.tavaresfc191782023-08-30 14:57:10 +01006 Modifications Copyright (C) 2019, 2023 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
adheli.tavaresfc191782023-08-30 14:57:10 +010023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
Jorge Hernandezb918b692017-09-20 23:12:27 -050026
adheli.tavaresfc191782023-08-30 14:57:10 +010027 <parent>
28 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
29 <artifactId>drools-applications-common</artifactId>
30 <version>2.0.1-SNAPSHOT</version>
31 </parent>
liamfallondef0f112018-02-13 11:29:56 +000032
adheli.tavaresfc191782023-08-30 14:57:10 +010033 <artifactId>feature-controlloop-utils</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000034
adheli.tavaresfc191782023-08-30 14:57:10 +010035 <description>
36 Loadable PDP-D feature module to enable simulator usage in a non-junit
37 lab environments. In a pdp-d lab environment this capability can be
38 enabled with the "feature" mechanisms.
39 </description>
liamfallondef0f112018-02-13 11:29:56 +000040
adheli.tavaresfc191782023-08-30 14:57:10 +010041 <properties>
adheli.tavares336d94a2023-10-04 15:38:04 +010042 <maven.compiler.release>17</maven.compiler.release>
adheli.tavaresfc191782023-08-30 14:57:10 +010043 </properties>
44
45 <build>
46 <plugins>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
49 <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>
71 <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 <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>
99 <version>${version.policy.drools-pdp}</version>
100 <scope>provided</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.onap.policy.common</groupId>
104 <artifactId>policy-endpoints</artifactId>
105 <version>${version.policy.common}</version>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
110 <artifactId>simulators</artifactId>
111 <version>${policy.models.version}</version>
112 </dependency>
113 <dependency>
114 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
115 <artifactId>aai</artifactId>
116 <version>${policy.models.version}</version>
117 </dependency>
118 <dependency>
119 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
120 <artifactId>so</artifactId>
121 <version>${policy.models.version}</version>
122 </dependency>
123 <dependency>
124 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
125 <artifactId>sdnc</artifactId>
126 <version>${policy.models.version}</version>
127 </dependency>
128 <dependency>
129 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
130 <artifactId>rest</artifactId>
131 <version>${policy.models.version}</version>
132 </dependency>
133 </dependencies>
Jorge Hernandezb918b692017-09-20 23:12:27 -0500134</project>