2 ============LICENSE_START=======================================================
4 ================================================================================
5 Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved.
6 Modifications Copyright (C) 2019,2023 Nordix Foundation.
7 Modifications Copyright (C) 2020 Bell Canada.
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
13 http://www.apache.org/licenses/LICENSE-2.0
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
23 <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/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
27 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
28 <artifactId>drools-applications-common</artifactId>
29 <version>1.12.2-SNAPSHOT</version>
32 <artifactId>feature-controlloop-trans</artifactId>
35 Loadable PDP-D feature module to track control loop transactions
41 <artifactId>maven-assembly-plugin</artifactId>
48 <phase>package</phase>
51 <finalName>${project.artifactId}-${project.version}</finalName>
53 <descriptor>src/assembly/assemble_zip.xml</descriptor>
55 <appendAssemblyId>false</appendAssemblyId>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-dependency-plugin</artifactId>
65 <id>copy-dependencies</id>
67 <goal>copy-dependencies</goal>
69 <phase>prepare-package</phase>
71 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
72 <overWriteReleases>false</overWriteReleases>
73 <overWriteSnapshots>true</overWriteSnapshots>
74 <overWriteIfNewer>true</overWriteIfNewer>
75 <useRepositoryLayout>false</useRepositoryLayout>
76 <addParentPoms>false</addParentPoms>
77 <copyPom>false</copyPom>
78 <includeScope>runtime</includeScope>
83 <!-- Controllers interfaces generation -->
85 <groupId>io.swagger.codegen.v3</groupId>
86 <artifactId>swagger-codegen-maven-plugin</artifactId>
94 <inputSpec>${project.basedir}/src/main/resources/openapi/openapi.yaml</inputSpec>
95 <invokerPackage>org.onap.policy.drools.server.restful</invokerPackage>
96 <modelPackage>org.onap.policy.drools.server.restful.model</modelPackage>
97 <apiPackage>org.onap.policy.drools.server.restful</apiPackage>
98 <language>jaxrs-spec</language>
99 <generateModels>false</generateModels>
100 <generateSupportingFiles>false</generateSupportingFiles>
101 <sortParamsByRequiredFlag>false</sortParamsByRequiredFlag>
103 Response=javax.ws.rs.core.Response
106 <typeMapping>Integer=int</typeMapping>
107 <typeMapping>Long=long</typeMapping>
110 <useTags>true</useTags>
111 <sourceFolder>src/gen/java</sourceFolder>
112 <dateLibrary>java11</dateLibrary>
113 <interfaceOnly>true</interfaceOnly>
123 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
124 <artifactId>events</artifactId>
125 <version>${policy.models.version}</version>
126 <scope>provided</scope>
129 <groupId>org.onap.policy.common</groupId>
130 <artifactId>policy-endpoints</artifactId>
131 <version>${version.policy.common}</version>
132 <scope>provided</scope>
135 <groupId>org.onap.policy.drools-pdp</groupId>
136 <artifactId>policy-management</artifactId>
137 <version>${version.policy.drools-pdp}</version>
138 <scope>provided</scope>
141 <groupId>org.onap.policy.drools-pdp</groupId>
142 <artifactId>policy-utils</artifactId>
143 <version>${version.policy.drools-pdp}</version>
144 <scope>provided</scope>
147 <groupId>com.google.guava</groupId>
148 <artifactId>guava</artifactId>
149 <scope>provided</scope>