Update snapshot and/or references of policy/drools-pdp to latest snapshots
[policy/drools-pdp.git] / feature-lifecycle / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP
4   ================================================================================
5   Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2023 Nordix Foundation.
7   ================================================================================
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
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.policy.drools-pdp</groupId>
28         <artifactId>drools-pdp</artifactId>
29         <version>1.12.2-SNAPSHOT</version>
30     </parent>
31
32     <artifactId>feature-lifecycle</artifactId>
33
34     <name>feature-lifecycle</name>
35     <description>Loadable module to support the lifecycle modes</description>
36
37     <build>
38         <plugins>
39             <plugin>
40                 <artifactId>maven-assembly-plugin</artifactId>
41                 <executions>
42                     <execution>
43                         <id>zipfile</id>
44                         <goals>
45                             <goal>single</goal>
46                         </goals>
47                         <phase>package</phase>
48                         <configuration>
49                             <attach>true</attach>
50                             <finalName>${project.artifactId}-${project.version}</finalName>
51                             <descriptors>
52                                 <descriptor>src/assembly/zip.xml</descriptor>
53                             </descriptors>
54                             <appendAssemblyId>false</appendAssemblyId>
55                         </configuration>
56                     </execution>
57                 </executions>
58             </plugin>
59             <plugin>
60                 <groupId>org.apache.maven.plugins</groupId>
61                 <artifactId>maven-dependency-plugin</artifactId>
62                 <executions>
63                     <execution>
64                         <id>copy-dependencies</id>
65                         <goals>
66                             <goal>copy-dependencies</goal>
67                         </goals>
68                         <phase>prepare-package</phase>
69                         <configuration>
70                             <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
71                             <overWriteReleases>false</overWriteReleases>
72                             <overWriteSnapshots>true</overWriteSnapshots>
73                             <overWriteIfNewer>true</overWriteIfNewer>
74                             <useRepositoryLayout>false</useRepositoryLayout>
75                             <addParentPoms>false</addParentPoms>
76                             <copyPom>false</copyPom>
77                             <includeScope>runtime</includeScope>
78                             <excludeTransitive>true</excludeTransitive>
79                         </configuration>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84     </build>
85
86     <dependencies>
87
88         <dependency>
89             <groupId>org.onap.policy.drools-pdp</groupId>
90             <artifactId>policy-management</artifactId>
91             <version>${project.version}</version>
92             <scope>provided</scope>
93         </dependency>
94
95         <dependency>
96             <groupId>org.projectlombok</groupId>
97             <artifactId>lombok</artifactId>
98             <scope>provided</scope>
99         </dependency>
100
101         <dependency>
102             <groupId>junit</groupId>
103             <artifactId>junit</artifactId>
104             <scope>test</scope>
105         </dependency>
106
107         <dependency>
108             <groupId>org.assertj</groupId>
109             <artifactId>assertj-core</artifactId>
110             <scope>test</scope>
111         </dependency>
112
113         <dependency>
114             <groupId>org.mockito</groupId>
115             <artifactId>mockito-core</artifactId>
116             <scope>test</scope>
117         </dependency>
118
119         <dependency>
120             <groupId>org.onap.policy.common</groupId>
121             <artifactId>policy-endpoints</artifactId>
122             <version>${policy.common.version}</version>
123             <scope>provided</scope>
124         </dependency>
125
126         <dependency>
127             <groupId>org.onap.policy.common</groupId>
128             <artifactId>utils-test</artifactId>
129             <version>${policy.common.version}</version>
130             <scope>test</scope>
131         </dependency>
132
133         <dependency>
134             <groupId>org.onap.policy.common</groupId>
135             <artifactId>gson</artifactId>
136             <version>${policy.common.version}</version>
137         </dependency>
138
139         <dependency>
140             <groupId>org.onap.policy.common</groupId>
141             <artifactId>utils</artifactId>
142             <version>${policy.common.version}</version>
143             <scope>provided</scope>
144         </dependency>
145
146         <dependency>
147             <groupId>org.onap.policy.models</groupId>
148             <artifactId>policy-models-examples</artifactId>
149             <version>${policy.models.version}</version>
150             <scope>test</scope>
151         </dependency>
152
153         <dependency>
154             <groupId>commons-beanutils</groupId>
155             <artifactId>commons-beanutils</artifactId>
156         </dependency>
157
158     </dependencies>
159
160 </project>