| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ============LICENSE_START======================================================= |
| ONAP Policy Engine - Drools PDP |
| ================================================================================ |
| Copyright (C) 2017-2022 AT&T Intellectual Property. All rights reserved. |
| Modifications Copyright (C) 2020,2023 Nordix Foundation. |
| ================================================================================ |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| ============LICENSE_END========================================================= |
| --> |
| |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.onap.policy.drools-pdp</groupId> |
| <artifactId>drools-pdp</artifactId> |
| <version>2.0.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>policy-management</artifactId> |
| |
| <name>policy-management</name> |
| <description>Policy Management</description> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>zipfile</id> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| <phase>package</phase> |
| <configuration> |
| <attach>true</attach> |
| <finalName>${project.artifactId}-${project.version}</finalName> |
| <descriptors> |
| <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| </descriptors> |
| <appendAssemblyId>false</appendAssemblyId> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-dependencies</id> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <phase>prepare-package</phase> |
| <configuration> |
| <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| <overWriteReleases>false</overWriteReleases> |
| <overWriteSnapshots>true</overWriteSnapshots> |
| <overWriteIfNewer>true</overWriteIfNewer> |
| <useRepositoryLayout>false</useRepositoryLayout> |
| <addParentPoms>false</addParentPoms> |
| <copyPom>false</copyPom> |
| <excludeGroupIds>javax.inject</excludeGroupIds> |
| <includeScope>runtime</includeScope> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-resources-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-version</id> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <phase>validate</phase> |
| <configuration> |
| <outputDirectory>${basedir}/target/versions</outputDirectory> |
| <resources> |
| <resource> |
| <directory>src/main/resources/versions</directory> |
| <includes> |
| <include>version.properties</include> |
| </includes> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| <execution> |
| <id>copy-resources</id> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <phase>validate</phase> |
| <configuration> |
| <outputDirectory>${basedir}/target/etc/bvc-extensions</outputDirectory> |
| <resources> |
| <resource> |
| <directory>src/main/resources/etc/bvc-extensions</directory> |
| <includes> |
| <include>feature_config_template.cfg</include> |
| <include>feature_custom.install</include> |
| </includes> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| <execution> |
| <id>copy-swagger</id> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <phase>compile</phase> |
| <configuration> |
| <outputDirectory>src/main/resources/swagger</outputDirectory> |
| <resources> |
| <resource> |
| <directory>${basedir}/target/generated-sources/swagger</directory> |
| <includes> |
| <include>swagger.json</include> |
| </includes> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <!-- Controllers interfaces generation --> |
| <plugin> |
| <groupId>io.swagger.codegen.v3</groupId> |
| <artifactId>swagger-codegen-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>code-gen</id> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| <configuration> |
| <inputSpec>${project.basedir}/src/main/resources/openapi/openapi.yaml</inputSpec> |
| <invokerPackage>org.onap.policy.drools.server.restful</invokerPackage> |
| <modelPackage>org.onap.policy.drools.server.restful.model</modelPackage> |
| <apiPackage>org.onap.policy.drools.server.restful</apiPackage> |
| <language>jaxrs-spec</language> |
| <generateModels>false</generateModels> |
| <generateSupportingFiles>false</generateSupportingFiles> |
| <importMappings> |
| CoderFilters=org.onap.policy.drools.protocol.coders.EventProtocolCoder.CoderFilters, |
| CodingResult=org.onap.policy.drools.server.restful.RestManager.CodingResult, |
| ControllerConfiguration=org.onap.policy.drools.protocol.configuration.ControllerConfiguration, |
| DroolsController=org.onap.policy.drools.controller.DroolsController, |
| JsonProtocolFilter=org.onap.policy.drools.protocol.coders.JsonProtocolFilter, |
| PdpStatistics=org.onap.policy.models.pdp.concepts.PdpStatistics, |
| PdpdConfiguration=org.onap.policy.drools.protocol.configuration.PdpdConfiguration, |
| PolicyController=org.onap.policy.drools.system.PolicyController, |
| PolicyControllerFeatureApi=org.onap.policy.drools.features.PolicyControllerFeatureApi, |
| PolicyEngine=org.onap.policy.drools.system.PolicyEngine, |
| PolicyEngineFeatureApi=org.onap.policy.drools.features.PolicyEngineFeatureApi, |
| PolicyTypeController=org.onap.policy.drools.lifecycle.PolicyTypeController, |
| Properties=java.util.Properties, |
| ProtocolCoderToolset=org.onap.policy.drools.protocol.coders.ProtocolCoderToolset, |
| Response=javax.ws.rs.core.Response, |
| TopicEndpoint=org.onap.policy.common.endpoints.event.comm.TopicEndpoint, |
| TopicSink=org.onap.policy.common.endpoints.event.comm.TopicSink, |
| TopicSource=org.onap.policy.common.endpoints.event.comm.TopicSource, |
| ToscaPolicy=org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy |
| </importMappings> |
| <typeMappings> |
| <typeMapping>boolean=boolean</typeMapping> |
| </typeMappings> |
| <configOptions> |
| <sourceFolder>src/gen/java</sourceFolder> |
| <dateLibrary>java11</dateLibrary> |
| <interfaceOnly>true</interfaceOnly> |
| <useTags>true</useTags> |
| <skipIfSpecIsUnchanged>false</skipIfSpecIsUnchanged> |
| </configOptions> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.onap.policy.drools-pdp</groupId> |
| <artifactId>policy-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.policy.drools-pdp</groupId> |
| <artifactId>policy-domains</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.policy.common</groupId> |
| <artifactId>policy-endpoints</artifactId> |
| <version>${policy.common.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.policy.common</groupId> |
| <artifactId>utils</artifactId> |
| <version>${policy.common.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.policy.models</groupId> |
| <artifactId>policy-models-pdp</artifactId> |
| <version>${policy.models.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-server</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-servlet</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.policy.common</groupId> |
| <artifactId>gson</artifactId> |
| <version>${policy.common.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.google.code.gson</groupId> |
| <artifactId>gson</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.fatboyindustrial.gson-javatime-serialisers</groupId> |
| <artifactId>gson-javatime-serialisers</artifactId> |
| <version>1.1.1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.jayway.jsonpath</groupId> |
| <artifactId>json-path</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-collections4</artifactId> |
| </dependency> |
| |
| <!-- if we don't explicitly specify the version here, we seem to end up |
| with version 1.4 (as a dependency to drools-core). This version is |
| not compatible with 'saClientLibrary' version 1.2.1-oss |
| --> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.policy.common</groupId> |
| <artifactId>utils-test</artifactId> |
| <version>${policy.common.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- |
| The following dependencies are for features and drools |
| applications usage |
| --> |
| |
| <dependency> |
| <groupId>org.mariadb.jdbc</groupId> |
| <artifactId>mariadb-java-client</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.hibernate</groupId> |
| <artifactId>hibernate-core</artifactId> |
| <!-- |
| Exclude this because it's incompatible with eclipselink, which already |
| includes the same classes. |
| --> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.persistence</groupId> |
| <artifactId>javax.persistence-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.hibernate.common</groupId> |
| <artifactId>hibernate-commons-annotations</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.prometheus</groupId> |
| <artifactId>simpleclient_logback</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.awaitility</groupId> |
| <artifactId>awaitility</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- Swagger v3 annotations --> |
| <dependency> |
| <groupId>io.swagger.core.v3</groupId> |
| <artifactId>swagger-annotations</artifactId> |
| </dependency> |
| |
| </dependencies> |
| </project> |