blob: 899396689f2c231d44bd85d8f6dbae92bfb0c468 [file] [log] [blame]
Jim Hahna3fa1c62018-03-26 16:48:31 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -06005 Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
adheli.tavarescc1d3d32024-01-26 15:28:56 +00006 Modifications Copyright (C) 2024 Nordix Foundation.
Jim Hahna3fa1c62018-03-26 16:48:31 -04007 ================================================================================
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
adheli.tavares396f6022023-08-07 16:01:21 -040011
Jim Hahna3fa1c62018-03-26 16:48:31 -040012 http://www.apache.org/licenses/LICENSE-2.0
adheli.tavares396f6022023-08-07 16:01:21 -040013
Jim Hahna3fa1c62018-03-26 16:48:31 -040014 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 -->
Jim Hahna69e3a92018-04-05 13:27:38 -040021
adheli.tavares396f6022023-08-07 16:01:21 -040022<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">
Jim Hahna69e3a92018-04-05 13:27:38 -040024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <modelVersion>4.0.0</modelVersion>
Jim Hahna69e3a92018-04-05 13:27:38 -040026
Pamela Dragoshfd307be2018-08-28 18:10:51 -040027 <parent>
28 <groupId>org.onap.policy.drools-pdp</groupId>
29 <artifactId>drools-pdp</artifactId>
rameshiyer27dcb947d2024-11-19 08:28:35 +000030 <version>3.0.2-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040031 </parent>
Jim Hahna69e3a92018-04-05 13:27:38 -040032
adheli.tavarescc1d3d32024-01-26 15:28:56 +000033 <artifactId>feature-pooling-messages</artifactId>
Jim Hahna3fa1c62018-03-26 16:48:31 -040034
adheli.tavarescc1d3d32024-01-26 15:28:56 +000035 <name>feature-pooling-messages</name>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <description>Endpoints</description>
Jim Hahna3fa1c62018-03-26 16:48:31 -040037
Pamela Dragoshfd307be2018-08-28 18:10:51 -040038 <build>
39 <plugins>
40 <plugin>
adheli.tavarescc1d3d32024-01-26 15:28:56 +000041 <groupId>org.apache.maven.plugins</groupId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040042 <artifactId>maven-assembly-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>zipfile</id>
46 <goals>
47 <goal>single</goal>
48 </goals>
49 <phase>package</phase>
50 <configuration>
51 <attach>true</attach>
52 <finalName>${project.artifactId}-${project.version}</finalName>
53 <descriptors>
54 <descriptor>src/assembly/assemble_zip.xml</descriptor>
55 </descriptors>
56 <appendAssemblyId>false</appendAssemblyId>
57 </configuration>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-dependency-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>copy-dependencies</id>
67 <goals>
68 <goal>copy-dependencies</goal>
69 </goals>
70 <phase>prepare-package</phase>
71 <configuration>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040072 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
73 <overWriteReleases>false</overWriteReleases>
74 <overWriteSnapshots>true</overWriteSnapshots>
75 <overWriteIfNewer>true</overWriteIfNewer>
76 <useRepositoryLayout>false</useRepositoryLayout>
77 <addParentPoms>false</addParentPoms>
78 <copyPom>false</copyPom>
79 <includeScope>runtime</includeScope>
80 <excludeTransitive>true</excludeTransitive>
81 </configuration>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
Jim Hahna3fa1c62018-03-26 16:48:31 -040087
Pamela Dragoshfd307be2018-08-28 18:10:51 -040088 <dependencies>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040089 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040090 <groupId>ch.qos.logback</groupId>
91 <artifactId>logback-classic</artifactId>
92 <scope>provided</scope>
93 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040094 <dependency>
95 <groupId>org.onap.policy.drools-pdp</groupId>
96 <artifactId>policy-core</artifactId>
97 <version>${project.version}</version>
98 <scope>provided</scope>
99 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400100 <dependency>
101 <groupId>org.onap.policy.drools-pdp</groupId>
102 <artifactId>policy-management</artifactId>
103 <version>${project.version}</version>
104 <scope>provided</scope>
105 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400106 </dependencies>
Jim Hahna3fa1c62018-03-26 16:48:31 -0400107
108</project>