blob: 12906149dfd4ac487c3959a62d3116c933cb9d5a [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
3 drools-pdp-apps
4 ================================================================================
Jim Hahn46b27ab2021-03-02 14:14:22 -05005 Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
liamfallon0d524722023-01-31 10:44:54 +00006 Modifications Copyright (C) 2019,2023 Nordix Foundation.
Pamela Dragosha6557b02017-02-14 19:49:32 -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
Temoc Rodriguezb234cce2017-08-16 16:10:55 -070011
Pamela Dragosha6557b02017-02-14 19:49:32 -050012 http://www.apache.org/licenses/LICENSE-2.0
Temoc Rodriguezb234cce2017-08-16 16:10:55 -070013
Pamela Dragosha6557b02017-02-14 19:49:32 -050014 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
adheli.tavaresfc191782023-08-30 14:57:10 +010022<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">
Pamela Dragosha6557b02017-02-14 19:49:32 -050024
eikrwaqa0200fa2018-05-01 15:30:21 +010025 <modelVersion>4.0.0</modelVersion>
26 <parent>
Pamela Dragoshacfe0632018-08-28 09:57:31 -040027 <groupId>org.onap.policy.parent</groupId>
28 <artifactId>integration</artifactId>
liamfallone3300762023-10-18 18:11:13 +010029 <version>4.0.2-SNAPSHOT</version>
liamfalloncb0d3342023-10-18 09:08:51 +010030 <relativePath />
eikrwaqa0200fa2018-05-01 15:30:21 +010031 </parent>
Pamela Dragosha6557b02017-02-14 19:49:32 -050032
eikrwaqa0200fa2018-05-01 15:30:21 +010033 <groupId>org.onap.policy.drools-applications</groupId>
34 <artifactId>drools-applications</artifactId>
liamfallone3300762023-10-18 18:11:13 +010035 <version>2.0.2-SNAPSHOT</version>
Pamela Dragosha6557b02017-02-14 19:49:32 -050036
eikrwaqa0200fa2018-05-01 15:30:21 +010037 <name>policy-drools-applications</name>
38 <packaging>pom</packaging>
Pamela Dragosha6557b02017-02-14 19:49:32 -050039
eikrwaqa0200fa2018-05-01 15:30:21 +010040 <properties>
eikrwaqa0200fa2018-05-01 15:30:21 +010041 <!-- Project path properties -->
42 <nexusproxy>https://nexus.onap.org</nexusproxy>
43 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
44 <releases.path>content/repositories/releases/</releases.path>
45 <snapshots.path>content/repositories/snapshots/</snapshots.path>
46 <staging.path>content/repositories/staging/</staging.path>
adheli.tavaresfc191782023-08-30 14:57:10 +010047 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Pamela Dragosh2d70f7d2018-02-16 10:41:37 -050048
eikrwaqa0200fa2018-05-01 15:30:21 +010049 <!-- Project common dependency versions -->
liamfallone3300762023-10-18 18:11:13 +010050 <version.policy.common>2.0.2-SNAPSHOT</version.policy.common>
51 <policy.models.version>3.0.2-SNAPSHOT</policy.models.version>
52 <version.policy.drools-pdp>2.0.2-SNAPSHOT</version.policy.drools-pdp>
adheli.tavaresfc191782023-08-30 14:57:10 +010053 <surefireArgLine>
54 --add-opens java.base/java.lang=ALL-UNNAMED
55 </surefireArgLine>
eikrwaqa0200fa2018-05-01 15:30:21 +010056 </properties>
Pamela Dragosh65509922017-02-16 13:27:42 -050057
eikrwaqa0200fa2018-05-01 15:30:21 +010058 <build>
59 <plugins>
60 <plugin>
eikrwaqa0200fa2018-05-01 15:30:21 +010061 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-deploy-plugin</artifactId>
63 <configuration>
adheli.tavaresfc191782023-08-30 14:57:10 +010064 <skip/>
eikrwaqa0200fa2018-05-01 15:30:21 +010065 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
eikrwaqa0200fa2018-05-01 15:30:21 +010070 <configuration>
adheli.tavaresfc191782023-08-30 14:57:10 +010071 <encoding>${project.build.sourceEncoding}</encoding>
Hockla, Ali (ah999m)25d3e432020-01-15 15:04:09 -060072 <release>${java.version}</release>
eikrwaqa0200fa2018-05-01 15:30:21 +010073 </configuration>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-site-plugin</artifactId>
78 <dependencies>
79 <dependency>
80 <groupId>org.apache.maven.wagon</groupId>
81 <artifactId>wagon-webdav-jackrabbit</artifactId>
82 <version>2.10</version>
83 </dependency>
84 </dependencies>
85 </plugin>
adheli.tavaresfc191782023-08-30 14:57:10 +010086 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-javadoc-plugin</artifactId>
89 </plugin>
eikrwaqa0200fa2018-05-01 15:30:21 +010090 </plugins>
eikrwaqa0200fa2018-05-01 15:30:21 +010091 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050092
eikrwaqa0200fa2018-05-01 15:30:21 +010093 <modules>
94 <module>controlloop</module>
95 <module>testsuites</module>
96 </modules>
Pamela Dragosh65509922017-02-16 13:27:42 -050097
eikrwaqa0200fa2018-05-01 15:30:21 +010098 <reporting>
99 <plugins>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-javadoc-plugin</artifactId>
eikrwaqa0200fa2018-05-01 15:30:21 +0100103 <configuration>
104 <failOnError>false</failOnError>
105 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
106 <docletArtifact>
107 <groupId>org.umlgraph</groupId>
108 <artifactId>umlgraph</artifactId>
109 <version>5.6</version>
110 </docletArtifact>
eikrwaqa0200fa2018-05-01 15:30:21 +0100111 <useStandardDocletOptions>true</useStandardDocletOptions>
112 </configuration>
113 </plugin>
114 </plugins>
115 </reporting>
Jorge Hernandez3b25dd82017-08-30 23:42:35 -0500116
eikrwaqa0200fa2018-05-01 15:30:21 +0100117 <dependencies>
118 <dependency>
adheli.tavaresfc191782023-08-30 14:57:10 +0100119 <groupId>org.kie</groupId>
120 <artifactId>kie-ci</artifactId>
121 </dependency>
122
123 <dependency>
eikrwaqa0200fa2018-05-01 15:30:21 +0100124 <groupId>ch.qos.logback</groupId>
125 <artifactId>logback-classic</artifactId>
eikrwaqa0200fa2018-05-01 15:30:21 +0100126 <scope>provided</scope>
127 </dependency>
Pamela Dragosh310ff502020-03-03 09:14:57 -0500128 <dependency>
adheli.tavaresfc191782023-08-30 14:57:10 +0100129 <groupId>org.junit.jupiter</groupId>
130 <artifactId>junit-jupiter-engine</artifactId>
Pamela Dragosh310ff502020-03-03 09:14:57 -0500131 <scope>test</scope>
132 </dependency>
133 <dependency>
Pamela Dragosh310ff502020-03-03 09:14:57 -0500134 <groupId>org.mockito</groupId>
135 <artifactId>mockito-core</artifactId>
136 <scope>test</scope>
137 </dependency>
138 <dependency>
liamfallon0d524722023-01-31 10:44:54 +0000139 <groupId>org.springframework</groupId>
140 <artifactId>spring-test</artifactId>
Pamela Dragosh310ff502020-03-03 09:14:57 -0500141 <scope>test</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.assertj</groupId>
145 <artifactId>assertj-core</artifactId>
146 <scope>test</scope>
147 </dependency>
148 <dependency>
149 <groupId>org.awaitility</groupId>
150 <artifactId>awaitility</artifactId>
151 <scope>test</scope>
152 </dependency>
liamfallon2b512492023-02-17 19:17:27 +0000153
lapentafd44dd8292023-02-13 13:59:45 +0000154 <!-- Swagger v3 annotations -->
155 <dependency>
156 <groupId>io.swagger.core.v3</groupId>
liamfallon2b512492023-02-17 19:17:27 +0000157 <artifactId>swagger-annotations</artifactId>
lapentafd44dd8292023-02-13 13:59:45 +0000158 </dependency>
eikrwaqa0200fa2018-05-01 15:30:21 +0100159 </dependencies>
Pamela Dragosha6557b02017-02-14 19:49:32 -0500160</project>