1 <?xml version="1.0" encoding="UTF-8"?>
3 * ========================LICENSE_START=================================
6 * Copyright (C) 2023 Nordix Foundation
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22 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">
24 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.o-ran-sc.nonrtric.plt</groupId>
27 <artifactId>rappmanager</artifactId>
28 <version>0.0.1-SNAPSHOT</version>
31 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
32 <artifactId>rapp-manager-acm</artifactId>
35 <maven.compiler.source>${java.version}</maven.compiler.source>
36 <maven.compiler.target>${java.version}</maven.compiler.target>
37 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 <groupId>org.o-ran-sc.nonrtric.plt.rappmanager</groupId>
43 <artifactId>rapp-manager-models</artifactId>
44 <version>${project.version}</version>
47 <groupId>org.onap.policy.clamp</groupId>
48 <artifactId>policy-clamp-models</artifactId>
49 <version>${onap.acm.models.version}</version>
52 <groupId>org.springframework.boot</groupId>
53 <artifactId>spring-boot-starter-data-jpa</artifactId>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-starter-aop</artifactId>
60 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-security</artifactId>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-validation</artifactId>
68 <groupId>org.springframework.boot</groupId>
69 <artifactId>spring-boot-starter-webflux</artifactId>
74 <groupId>org.openapitools</groupId>
75 <artifactId>jackson-databind-nullable</artifactId>
76 <version>${openapi.jackson.databind.nullable.version}</version>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-test</artifactId>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-web</artifactId>
94 <groupId>org.openapitools</groupId>
95 <artifactId>openapi-generator-maven-plugin</artifactId>
96 <version>${openapi.maven.version}</version>
99 <id>acm-spec-generator</id>
101 <goal>generate</goal>
104 <inputSpec>${project.basedir}/src/main/resources/openapi/acm-spec.yaml</inputSpec>
105 <generatorName>java</generatorName>
106 <library>resttemplate</library>
107 <generateApiTests>false</generateApiTests>
108 <generateModelTests>false</generateModelTests>
109 <generateApiDocumentation>false</generateApiDocumentation>
110 <generateModelDocumentation>false</generateModelDocumentation>
111 <generateModels>true</generateModels>
113 ToscaServiceTemplates=org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplates,
114 ToscaServiceTemplate=org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate,
115 ToscaNodeTemplate=org.onap.policy.models.tosca.authorative.concepts.ToscaNodeTemplate,
116 AutomationCompositions=org.onap.policy.clamp.models.acm.concepts.AutomationCompositions,
117 AutomationComposition=org.onap.policy.clamp.models.acm.concepts.AutomationComposition,
118 AutomationCompositionDefinition=org.onap.policy.clamp.models.acm.concepts.AutomationCompositionDefinition,
119 SimpleResponse=org.onap.policy.clamp.models.acm.messages.rest.SimpleResponse,
120 AcTypeStateUpdate=org.onap.policy.clamp.models.acm.messages.rest.commissioning.AcTypeStateUpdate,
121 AcInstanceStateUpdate=org.onap.policy.clamp.models.acm.messages.rest.instantiation.AcInstanceStateUpdate,
122 InstancePropertiesResponse=org.onap.policy.clamp.models.acm.messages.rest.instantiation.InstancePropertiesResponse,
123 CommissioningResponse=org.onap.policy.clamp.models.acm.messages.rest.commissioning.CommissioningResponse,
124 InstantiationCommand=org.onap.policy.clamp.models.acm.messages.rest.instantiation.InstantiationCommand,
125 InstantiationResponse=org.onap.policy.clamp.models.acm.messages.rest.instantiation.InstantiationResponse,
126 InstantiationUpdate=org.onap.policy.clamp.models.acm.messages.rest.instantiation.InstantiationUpdate,
127 ParticipantInformation=org.onap.policy.clamp.models.acm.concepts.ParticipantInformation
129 <additionalProperties>
130 <additionalProperty>apiNameSuffix=ApiClient</additionalProperty>
131 </additionalProperties>
133 <sourceFolder>src/main/java</sourceFolder>
134 <useJakartaEe>true</useJakartaEe>
135 <invokerPackage>com.oransc.rappmanager.acm</invokerPackage>
136 <apiPackage>com.oransc.rappmanager.acm.rest</apiPackage>
137 <modelPackage>com.oransc.rappmanager.acm.data</modelPackage>
138 <generateClientAsBean>false</generateClientAsBean>