Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | drools-pdp-apps |
| 4 | ================================================================================ |
Jim Hahn | 46b27ab | 2021-03-02 14:14:22 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved. |
liamfallon | 0d52472 | 2023-01-31 10:44:54 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019,2023 Nordix Foundation. |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 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 |
Temoc Rodriguez | b234cce | 2017-08-16 16:10:55 -0700 | [diff] [blame] | 11 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
Temoc Rodriguez | b234cce | 2017-08-16 16:10:55 -0700 | [diff] [blame] | 13 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 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 | |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 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"> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 24 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
Pamela Dragosh | acfe063 | 2018-08-28 09:57:31 -0400 | [diff] [blame] | 27 | <groupId>org.onap.policy.parent</groupId> |
| 28 | <artifactId>integration</artifactId> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 29 | <version>4.0.1-SNAPSHOT</version> |
| 30 | <relativePath/> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 31 | </parent> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 32 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 33 | <groupId>org.onap.policy.drools-applications</groupId> |
| 34 | <artifactId>drools-applications</artifactId> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 35 | <version>2.0.1-SNAPSHOT</version> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 36 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 37 | <name>policy-drools-applications</name> |
| 38 | <packaging>pom</packaging> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 39 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 40 | <properties> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 41 | <!-- 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.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Pamela Dragosh | 2d70f7d | 2018-02-16 10:41:37 -0500 | [diff] [blame] | 48 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 49 | <!-- Project common dependency versions --> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 50 | <version.policy.common>2.0.1-SNAPSHOT</version.policy.common> |
| 51 | <policy.models.version>3.0.1-SNAPSHOT</policy.models.version> |
| 52 | <version.policy.drools-pdp>2.0.1-SNAPSHOT</version.policy.drools-pdp> |
| 53 | <surefireArgLine> |
| 54 | --add-opens java.base/java.lang=ALL-UNNAMED |
| 55 | </surefireArgLine> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 56 | </properties> |
Pamela Dragosh | 6550992 | 2017-02-16 13:27:42 -0500 | [diff] [blame] | 57 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-deploy-plugin</artifactId> |
| 63 | <configuration> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 64 | <skip/> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 65 | </configuration> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
| 69 | <artifactId>maven-compiler-plugin</artifactId> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 70 | <configuration> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 71 | <encoding>${project.build.sourceEncoding}</encoding> |
Hockla, Ali (ah999m) | 25d3e43 | 2020-01-15 15:04:09 -0600 | [diff] [blame] | 72 | <release>${java.version}</release> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 73 | </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.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 86 | <plugin> |
| 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-javadoc-plugin</artifactId> |
| 89 | </plugin> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 90 | </plugins> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 91 | </build> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 92 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 93 | <modules> |
| 94 | <module>controlloop</module> |
| 95 | <module>testsuites</module> |
| 96 | </modules> |
Pamela Dragosh | 6550992 | 2017-02-16 13:27:42 -0500 | [diff] [blame] | 97 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 98 | <reporting> |
| 99 | <plugins> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.maven.plugins</groupId> |
| 102 | <artifactId>maven-javadoc-plugin</artifactId> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 103 | <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> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 111 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </reporting> |
Jorge Hernandez | 3b25dd8 | 2017-08-30 23:42:35 -0500 | [diff] [blame] | 116 | |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 117 | <dependencies> |
| 118 | <dependency> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 119 | <groupId>org.kie</groupId> |
| 120 | <artifactId>kie-ci</artifactId> |
| 121 | </dependency> |
| 122 | |
| 123 | <dependency> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 124 | <groupId>ch.qos.logback</groupId> |
| 125 | <artifactId>logback-classic</artifactId> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 126 | <scope>provided</scope> |
| 127 | </dependency> |
Pamela Dragosh | 310ff50 | 2020-03-03 09:14:57 -0500 | [diff] [blame] | 128 | <dependency> |
adheli.tavares | fc19178 | 2023-08-30 14:57:10 +0100 | [diff] [blame^] | 129 | <groupId>org.junit.jupiter</groupId> |
| 130 | <artifactId>junit-jupiter-engine</artifactId> |
Pamela Dragosh | 310ff50 | 2020-03-03 09:14:57 -0500 | [diff] [blame] | 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | <dependency> |
Pamela Dragosh | 310ff50 | 2020-03-03 09:14:57 -0500 | [diff] [blame] | 134 | <groupId>org.mockito</groupId> |
| 135 | <artifactId>mockito-core</artifactId> |
| 136 | <scope>test</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
liamfallon | 0d52472 | 2023-01-31 10:44:54 +0000 | [diff] [blame] | 139 | <groupId>org.springframework</groupId> |
| 140 | <artifactId>spring-test</artifactId> |
Pamela Dragosh | 310ff50 | 2020-03-03 09:14:57 -0500 | [diff] [blame] | 141 | <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> |
liamfallon | 2b51249 | 2023-02-17 19:17:27 +0000 | [diff] [blame] | 153 | |
lapentafd | 44dd829 | 2023-02-13 13:59:45 +0000 | [diff] [blame] | 154 | <!-- Swagger v3 annotations --> |
| 155 | <dependency> |
| 156 | <groupId>io.swagger.core.v3</groupId> |
liamfallon | 2b51249 | 2023-02-17 19:17:27 +0000 | [diff] [blame] | 157 | <artifactId>swagger-annotations</artifactId> |
lapentafd | 44dd829 | 2023-02-13 13:59:45 +0000 | [diff] [blame] | 158 | </dependency> |
eikrwaq | a0200fa | 2018-05-01 15:30:21 +0100 | [diff] [blame] | 159 | </dependencies> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 160 | </project> |