New version of NearRT-RIC simulator
[nonrtric.git] / near-rt-ric-simulator / a1-med-api / pom.xml
diff --git a/near-rt-ric-simulator/a1-med-api/pom.xml b/near-rt-ric-simulator/a1-med-api/pom.xml
deleted file mode 100644 (file)
index 4030c1c..0000000
+++ /dev/null
@@ -1,171 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  ============LICENSE_START=======================================================
-   Copyright (C) 2019 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.
-
-  SPDX-License-Identifier: Apache-2.0
-  ============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.oran.nearric</groupId>
-               <artifactId>nearric-simulator</artifactId>
-               <version>1.0.0-SNAPSHOT</version>
-               
-       </parent>
-
-       <artifactId>a1-med-api</artifactId>
-       <name>${project.artifactId}</name>
-
-       <properties>
-               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-               <gson-fire-version>1.8.2</gson-fire-version>
-               <threetenbp-version>1.3.6</threetenbp-version>
-               <generated.package.api>org.oransc.ric.a1med.api</generated.package.api>
-       </properties>
-       <dependencies>
-               <dependency>
-                       <groupId>javax.annotation</groupId>
-                       <artifactId>javax.annotation-api</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>io.swagger.core.v3</groupId>
-                       <artifactId>swagger-annotations</artifactId>
-                       <version>2.0.8</version>
-               </dependency>
-               <dependency>
-                       <groupId>io.swagger</groupId>
-                       <artifactId>swagger-codegen-maven-plugin</artifactId>
-                       <version>2.4.8</version>
-               </dependency>
-               <!-- <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> 
-                       <version>2.9.2</version> </dependency> -->
-               <dependency>
-                       <groupId>com.fasterxml.jackson.core</groupId>
-                       <artifactId>jackson-core</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>com.fasterxml.jackson.core</groupId>
-                       <artifactId>jackson-annotations</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>com.fasterxml.jackson.core</groupId>
-                       <artifactId>jackson-databind</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>com.fasterxml.jackson.jaxrs</groupId>
-                       <artifactId>jackson-jaxrs-json-provider</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>com.fasterxml.jackson.datatype</groupId>
-                       <artifactId>jackson-datatype-jsr310</artifactId>
-               </dependency>
-               <dependency>
-                       <groupId>com.squareup.okhttp</groupId>
-                       <artifactId>okhttp</artifactId>
-                       <version>2.7.5</version>
-               </dependency>
-               <dependency>
-                       <groupId>com.squareup.okhttp</groupId>
-                       <artifactId>logging-interceptor</artifactId>
-                       <version>2.7.5</version>
-               </dependency>
-               <dependency>
-                       <groupId>io.gsonfire</groupId>
-                       <artifactId>gson-fire</artifactId>
-                       <version>${gson-fire-version}</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.threeten</groupId>
-                       <artifactId>threetenbp</artifactId>
-                       <version>${threetenbp-version}</version>
-               </dependency>
-       </dependencies>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>io.swagger.codegen.v3</groupId>
-                               <artifactId>swagger-codegen-maven-plugin</artifactId>
-                               <version>3.0.11</version>
-                               <executions>
-                                       <execution>
-                                               <id>generate-sources-server</id>
-                                               <phase>generate-sources</phase>
-                                               <goals>
-                                                       <goal>generate</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <inputSpec>${project.basedir}/src/main/resources/a1_mediator_0.11.0.yaml</inputSpec>
-                                                       <language>java</language>
-                                                       <output>${project.basedir}/target/generated-sources/a1med</output>
-                                                       <configOptions>
-                                                               <apiPackage>${generated.package.api}</apiPackage>
-                                                               <modelPackage>${generated.package.api}.model</modelPackage>
-                                                               <addCompileSourceRoot>true</addCompileSourceRoot>
-                                                               <generateApiTests>true</generateApiTests>
-                                                               <generateModels>true</generateModels>
-                                                               <generateApis>true</generateApis>
-                                                               <generateModelTests>true</generateModelTests>
-                                                               <sourceFolder>src/gen/java/main</sourceFolder>
-                                                               <jackson>true</jackson>
-                                                       </configOptions>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
-               </plugins>
-               <pluginManagement>
-                       <plugins>
-                               <plugin>
-                                       <groupId>org.springframework.boot</groupId>
-                                       <artifactId>spring-boot-maven-plugin</artifactId>
-                                       <configuration>
-                                               <skip>true</skip>
-                                       </configuration>
-                               </plugin>
-                               <!--This plugin's configuration is used to store Eclipse m2e settings 
-                                       only. It has no influence on the Maven build itself. -->
-                               <plugin>
-                                       <groupId>org.eclipse.m2e</groupId>
-                                       <artifactId>lifecycle-mapping</artifactId>
-                                       <version>1.0.0</version>
-                                       <configuration>
-                                               <lifecycleMappingMetadata>
-                                                       <pluginExecutions>
-                                                               <pluginExecution>
-                                                                       <pluginExecutionFilter>
-                                                                               <groupId>io.swagger.codegen.v3</groupId>
-                                                                               <artifactId>swagger-codegen-maven-plugin</artifactId>
-                                                                               <versionRange>[1.0,)</versionRange>
-                                                                               <goals>
-                                                                                       <goal>generate</goal>
-                                                                               </goals>
-                                                                       </pluginExecutionFilter>
-                                                                       <action>
-                                                                               <ignore />
-                                                                       </action>
-                                                               </pluginExecution>
-                                                       </pluginExecutions>
-                                               </lifecycleMappingMetadata>
-                                       </configuration>
-                               </plugin>
-                       </plugins>
-               </pluginManagement>
-       </build>
-</project>