Merge "Documentation Non-RT RIC"
diff --git a/dashboard/a1-controller-client/.gitignore b/dashboard/a1-controller-client/.gitignore
index 27fd461..212de16 100644
--- a/dashboard/a1-controller-client/.gitignore
+++ b/dashboard/a1-controller-client/.gitignore
@@ -21,3 +21,4 @@
build
logs/
+bin/
diff --git a/dashboard/pom.xml b/dashboard/pom.xml
index 7123fef..1473449 100644
--- a/dashboard/pom.xml
+++ b/dashboard/pom.xml
@@ -29,11 +29,11 @@
<version>2.1.9.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
- <groupId>org.o-ran-sc.portal.ric-dashboard</groupId>
+ <groupId>org.o-ran-sc.nonrt.ric-dashboard</groupId>
<artifactId>ric-dash-parent</artifactId>
- <name>RIC Dashboard project</name>
+ <name>NonRT RIC Dashboard project</name>
<packaging>pom</packaging>
- <version>1.2.5-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
<properties>
<java.version>11</java.version>
<!-- Properties for the license-maven-plugin in child POMs -->
diff --git a/dashboard/webapp-backend/.gitignore b/dashboard/webapp-backend/.gitignore
index 02dbd44..e3d7171 100644
--- a/dashboard/webapp-backend/.gitignore
+++ b/dashboard/webapp-backend/.gitignore
@@ -4,7 +4,7 @@
/target/
/logs/
/.mvn/wrapper/maven-wrapper.jar
-/logs/
+bin/
### STS ###
.apt_generated
diff --git a/dashboard/webapp-backend/pom.xml b/dashboard/webapp-backend/pom.xml
index ec4fdea..a7100be 100644
--- a/dashboard/webapp-backend/pom.xml
+++ b/dashboard/webapp-backend/pom.xml
@@ -23,12 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.o-ran-sc.portal.ric-dashboard</groupId>
+ <groupId>org.o-ran-sc.nonrt.ric-dashboard</groupId>
<artifactId>ric-dash-parent</artifactId>
- <version>1.2.5-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>ric-dash-be</artifactId>
- <name>RIC Dashboard Webapp backend</name>
+ <name>NonRT RIC Dashboard Webapp backend</name>
<properties>
<springfox.version>2.9.2</springfox.version>
<!-- Set by Jenkins -->
diff --git a/dashboard/webapp-backend/src/main/resources/application.properties b/dashboard/webapp-backend/src/main/resources/application.properties
index 585e795..0cb9891 100644
--- a/dashboard/webapp-backend/src/main/resources/application.properties
+++ b/dashboard/webapp-backend/src/main/resources/application.properties
@@ -30,7 +30,7 @@
userfile = users.json
# boolean flag whether to enforce Portal user and roles on requests
-portalapi.security = true
+portalapi.security = false
# class that decrypts ciphertext from Portal
portalapi.decryptor = org.oransc.ric.portal.dashboard.portalapi.PortalSdkDecryptorAes
# name of request cookie with user ID
diff --git a/dashboard/webapp-backend/src/main/resources/key.properties b/dashboard/webapp-backend/src/main/resources/key.properties
new file mode 100644
index 0000000..85a5689
--- /dev/null
+++ b/dashboard/webapp-backend/src/main/resources/key.properties
@@ -0,0 +1,22 @@
+# ========================LICENSE_START=================================
+# O-RAN-SC
+# %%
+# Copyright (C) 2019 AT&T Intellectual Property
+# %%
+# 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===================================
+
+# Test properties for the EPSDK-FW library.
+# This file must be present on the Java classpath.
+
+cipher.enc.key = bogus
diff --git a/dashboard/webapp-backend/src/main/resources/portal.properties b/dashboard/webapp-backend/src/main/resources/portal.properties
new file mode 100644
index 0000000..8c7fec7
--- /dev/null
+++ b/dashboard/webapp-backend/src/main/resources/portal.properties
@@ -0,0 +1,34 @@
+# ========================LICENSE_START=================================
+# O-RAN-SC
+# %%
+# Copyright (C) 2019 AT&T Intellectual Property
+# %%
+# 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===================================
+
+# Template for the file that provides properties for the EPSDK-FW library.
+# This file must be present on the Java classpath.
+
+# The following properties are the same in every deployment
+
+portal.api.impl.class = org.oransc.ric.portal.dashboard.portalapi.PortalRestCentralServiceImpl
+role_access_centralized = remote
+
+# The following properties are DIFFERENT in every deployment
+
+# URL of portal login screen
+ecomp_redirect_url = http://localhost/portal
+# URL of portal API
+ecomp_rest_url = http://localhost/portal
+# Value assigned by portal instance
+ueb_app_key = abcdef1234567890
diff --git a/dashboard/webapp-frontend/pom.xml b/dashboard/webapp-frontend/pom.xml
index fd75241..2888f73 100644
--- a/dashboard/webapp-frontend/pom.xml
+++ b/dashboard/webapp-frontend/pom.xml
@@ -23,12 +23,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.o-ran-sc.portal.ric-dashboard</groupId>
+ <groupId>org.o-ran-sc.nonrt.ric-dashboard</groupId>
<artifactId>ric-dash-parent</artifactId>
- <version>1.2.5-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>ric-dash-fe</artifactId>
- <name>RIC Dashboard Webapp frontend</name>
+ <name>NonRT RIC Dashboard Webapp frontend</name>
<build>
<plugins>
<plugin>
diff --git a/near-rt-ric-simulator/.gitignore b/near-rt-ric-simulator/.gitignore
new file mode 100755
index 0000000..264db96
--- /dev/null
+++ b/near-rt-ric-simulator/.gitignore
@@ -0,0 +1,31 @@
+#####standard .git ignore entries#####
+
+## IDE Specific Files ##
+org.eclipse.core.resources.prefs
+.classpath
+.project
+.settings
+.idea
+.externalToolBuilders
+.checkstyle
+maven-eclipse.xml
+workspace
+
+## Compilation Files ##
+*.class
+**/target
+target
+target-ide
+MANIFEST.MF
+
+## Misc Ignores (OS specific etc) ##
+bin/
+dist
+*~
+*.ipr
+*.iml
+*.iws
+classes
+out/
+.DS_STORE
+.metadata
diff --git a/near-rt-ric-simulator/README.md b/near-rt-ric-simulator/README.md
index 88f309b..298b988 100644
--- a/near-rt-ric-simulator/README.md
+++ b/near-rt-ric-simulator/README.md
@@ -4,7 +4,8 @@
Please see the documentation in the docs/ folder
-For more information about the NONRTRIC project please see the [project website](https://wiki.o-ran-sc.org/display/RICNR "O-RAN-SC NONRTRIC project")
+The backend server publishes live API documentation at the
+URL `http://your-host-name-here:8080/swagger-ui.html`
## License
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.gitignore b/near-rt-ric-simulator/a1-med-api/.gitignore
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/a1-med-api/.gitignore
rename to near-rt-ric-simulator/a1-med-api/.gitignore
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/pom.xml b/near-rt-ric-simulator/a1-med-api/pom.xml
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/a1-med-api/pom.xml
rename to near-rt-ric-simulator/a1-med-api/pom.xml
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/src/main/resources/a1_mediator_0.11.0.yaml b/near-rt-ric-simulator/a1-med-api/src/main/resources/a1_mediator_0.11.0.yaml
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/a1-med-api/src/main/resources/a1_mediator_0.11.0.yaml
rename to near-rt-ric-simulator/a1-med-api/src/main/resources/a1_mediator_0.11.0.yaml
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/.gitignore b/near-rt-ric-simulator/nearric-service/.gitignore
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/.gitignore
rename to near-rt-ric-simulator/nearric-service/.gitignore
diff --git a/near-rt-ric-simulator/nearric-service/Dockerfile b/near-rt-ric-simulator/nearric-service/Dockerfile
new file mode 100644
index 0000000..a56687a
--- /dev/null
+++ b/near-rt-ric-simulator/nearric-service/Dockerfile
@@ -0,0 +1,10 @@
+
+FROM openjdk:11-jre-slim
+
+ARG JAR_FILE
+
+WORKDIR /opt/app/nearricsimulator
+
+COPY ${JAR_FILE} nearric-simulator.jar
+
+ENTRYPOINT ["java", "-jar", "/opt/app/nearricsimulator/nearric-simulator.jar"]
\ No newline at end of file
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/container-tag.yaml b/near-rt-ric-simulator/nearric-service/container-tag.yaml
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/container-tag.yaml
rename to near-rt-ric-simulator/nearric-service/container-tag.yaml
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/pom.xml b/near-rt-ric-simulator/nearric-service/pom.xml
similarity index 94%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/pom.xml
rename to near-rt-ric-simulator/nearric-service/pom.xml
index e35337c..fcd5f86 100644
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/pom.xml
+++ b/near-rt-ric-simulator/nearric-service/pom.xml
@@ -12,7 +12,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <java.version>1.8</java.version>
<okhttp-version>2.7.5</okhttp-version>
<gson-version>2.8.1</gson-version>
<dockerfile-maven-version>1.4.2</dockerfile-maven-version>
@@ -165,6 +164,13 @@
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
</buildArgs>
</configuration>
+ <dependencies>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.1.1</version>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>
</build>
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/ApplicationConfig.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/ApplicationConfig.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/ApplicationConfig.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/ApplicationConfig.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/NearRicApplication.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/NearRicApplication.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/NearRicApplication.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/NearRicApplication.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/SwaggerConfiguration.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/SwaggerConfiguration.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/SwaggerConfiguration.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/config/SwaggerConfiguration.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApi.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApi.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApi.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApi.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApiController.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApiController.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApiController.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/controller/A1PApiController.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyInstance.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyInstance.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyInstance.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyInstance.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyType.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyType.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyType.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/model/PolicyType.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiService.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiService.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiService.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiService.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiServiceImpl.java b/near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiServiceImpl.java
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiServiceImpl.java
rename to near-rt-ric-simulator/nearric-service/src/main/java/org/onap/nearric/simulator/service/A1PApiServiceImpl.java
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/resources/application.properties b/near-rt-ric-simulator/nearric-service/src/main/resources/application.properties
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/src/main/resources/application.properties
rename to near-rt-ric-simulator/nearric-service/src/main/resources/application.properties
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/test/.gitignore b/near-rt-ric-simulator/nearric-service/test/.gitignore
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/test/.gitignore
rename to near-rt-ric-simulator/nearric-service/test/.gitignore
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/test/pi-template.json b/near-rt-ric-simulator/nearric-service/test/pi-template.json
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/test/pi-template.json
rename to near-rt-ric-simulator/nearric-service/test/pi-template.json
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/test/populate.sh b/near-rt-ric-simulator/nearric-service/test/populate.sh
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/test/populate.sh
rename to near-rt-ric-simulator/nearric-service/test/populate.sh
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/test/pt-template.json b/near-rt-ric-simulator/nearric-service/test/pt-template.json
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/test/pt-template.json
rename to near-rt-ric-simulator/nearric-service/test/pt-template.json
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/test/test-api.sh b/near-rt-ric-simulator/nearric-service/test/test-api.sh
similarity index 100%
rename from near-rt-ric-simulator/nearric-simulator/nearric-service/test/test-api.sh
rename to near-rt-ric-simulator/nearric-service/test/test-api.sh
diff --git a/near-rt-ric-simulator/nearric-simulator/.classpath b/near-rt-ric-simulator/nearric-simulator/.classpath
deleted file mode 100644
index 315bd1e..0000000
--- a/near-rt-ric-simulator/nearric-simulator/.classpath
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-8-openjdk-amd64"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/near-rt-ric-simulator/nearric-simulator/.project b/near-rt-ric-simulator/nearric-simulator/.project
deleted file mode 100644
index ea2f374..0000000
--- a/near-rt-ric-simulator/nearric-simulator/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>NearRic-simulator</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.m2e.core.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.m2e.core.maven2Nature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/near-rt-ric-simulator/nearric-simulator/.settings/org.eclipse.core.resources.prefs b/near-rt-ric-simulator/nearric-simulator/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 99f26c0..0000000
--- a/near-rt-ric-simulator/nearric-simulator/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-encoding/<project>=UTF-8
diff --git a/near-rt-ric-simulator/nearric-simulator/.settings/org.eclipse.m2e.core.prefs b/near-rt-ric-simulator/nearric-simulator/.settings/org.eclipse.m2e.core.prefs
deleted file mode 100644
index f897a7f..0000000
--- a/near-rt-ric-simulator/nearric-simulator/.settings/org.eclipse.m2e.core.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-activeProfiles=
-eclipse.preferences.version=1
-resolveWorkspaceProjects=true
-version=1
diff --git a/near-rt-ric-simulator/nearric-simulator/README.md b/near-rt-ric-simulator/nearric-simulator/README.md
deleted file mode 100644
index 298b988..0000000
--- a/near-rt-ric-simulator/nearric-simulator/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# O-RAN-SC Near-RealTime RIC Simulator
-
-The O-RAN SC Near-RealTime RIC simulates the A1 as an generic REST API which can receive and send northbound messages. The simulator validates the payload and applies policy.
-
-Please see the documentation in the docs/ folder
-
-The backend server publishes live API documentation at the
-URL `http://your-host-name-here:8080/swagger-ui.html`
-
-## License
-
-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.
-
-For more information about license please see the [LICENSE](LICENSE.txt) file for details.
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.classpath b/near-rt-ric-simulator/nearric-simulator/a1-med-api/.classpath
deleted file mode 100644
index a5d9509..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.classpath
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="src" output="target/classes" path="src/main/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="src" output="target/test-classes" path="src/test/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- <attribute name="test" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="output" path="target/classes"/>
-</classpath>
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.project b/near-rt-ric-simulator/nearric-simulator/a1-med-api/.project
deleted file mode 100644
index cdf3219..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.project
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>a1-med-api</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.m2e.core.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.eclipse.m2e.core.maven2Nature</nature>
- </natures>
-</projectDescription>
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.core.resources.prefs b/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index db32697..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,3 +0,0 @@
-eclipse.preferences.version=1
-encoding//src/main/resources=UTF-8
-encoding/<project>=UTF-8
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.jdt.core.prefs b/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 71df522..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,9 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.methodParameters=generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
-org.eclipse.jdt.core.compiler.compliance=1.8
-org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
-org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
-org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
-org.eclipse.jdt.core.compiler.release=disabled
-org.eclipse.jdt.core.compiler.source=1.8
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.m2e.core.prefs b/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.m2e.core.prefs
deleted file mode 100644
index f897a7f..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/.settings/org.eclipse.m2e.core.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-activeProfiles=
-eclipse.preferences.version=1
-resolveWorkspaceProjects=true
-version=1
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.iml b/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.iml
deleted file mode 100644
index 89d40ee..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.iml
+++ /dev/null
@@ -1,969 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you 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.
--->
-<module version="4" relativePaths="false" type="JAVA_MODULE">
- <component name="NewModuleRootManager">
- <exclude-output/>
- <orderEntry type="inheritedJdk"/>
- <!-- output url="file://$$MODULE_DIR$$/${maven.build.dest}"/ -->
- <!-- output-test url="file://$$MODULE_DIR$$/${maven.test.dest}"/ -->
- <content url="file://$MODULE_DIR$">
- <!-- sourceFolder url="file://$$MODULE_DIR$$/${pom.build.sourceDirectory}" isTestSource="false"/ -->
- <!-- sourceFolder url="file://$$MODULE_DIR$$/${pom.build.testSourceDirectory}" isTestSource="true"/ -->
- <sourceFolder url="file://$MODULE_DIR$/target/generated-sources/a1med/src/gen/java/main" isTestSource="false"/>
- <sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false"/>
- <excludeFolder url="file://$MODULE_DIR$/target/classes"/>
- <excludeFolder url="file://$MODULE_DIR$/target/generated-sources/a1med/.swagger-codegen"/>
- <excludeFolder url="file://$MODULE_DIR$/target/generated-sources/a1med/src/main"/>
- <excludeFolder url="file://$MODULE_DIR$/target/generated-sources/a1med/src/test"/>
- <excludeFolder url="file://$MODULE_DIR$/target/test-classes"/>
- </content>
- <orderEntry type="sourceFolder" forTests="false"/>
- <!-- Next include each dependency:
- <orderEntry type="module" module-name="${dep.artifactId}"/>
- <orderEntry type="module-library">
- <library name="${dep.artifactId}">
- <CLASSES>
- <root url="jar://${lib.path}!/"/>
- </CLASSES>
- <JAVADOC/>
- <SOURCES/>
- </library>
- </orderEntry>
- -->
- <output url="file://$MODULE_DIR$/target/classes"/>
- <output-test url="file://$MODULE_DIR$/target/test-classes"/>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.1.9.RELEASE/spring-boot-autoconfigure-2.1.9.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.1.9.RELEASE/spring-boot-autoconfigure-2.1.9.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/boot/spring-boot/2.1.9.RELEASE/spring-boot-2.1.9.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/boot/spring-boot/2.1.9.RELEASE/spring-boot-2.1.9.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-core/5.1.10.RELEASE/spring-core-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-core/5.1.10.RELEASE/spring-core-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-jcl/5.1.10.RELEASE/spring-jcl-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-jcl/5.1.10.RELEASE/spring-jcl-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-context/5.1.10.RELEASE/spring-context-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-context/5.1.10.RELEASE/spring-context-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-aop/5.1.10.RELEASE/spring-aop-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-aop/5.1.10.RELEASE/spring-aop-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-beans/5.1.10.RELEASE/spring-beans-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-beans/5.1.10.RELEASE/spring-beans-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-expression/5.1.10.RELEASE/spring-expression-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-expression/5.1.10.RELEASE/spring-expression-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/core/v3/swagger-annotations/2.0.8/swagger-annotations-2.0.8.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/core/v3/swagger-annotations/2.0.8/swagger-annotations-2.0.8-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-codegen-maven-plugin/2.4.8/swagger-codegen-maven-plugin-2.4.8.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-codegen-maven-plugin/2.4.8/swagger-codegen-maven-plugin-2.4.8-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/inject/javax.inject/1/javax.inject-1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar!/"/>
- </CLASSES>
- <SOURCES/>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-compat/3.2.5/maven-compat-3.2.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/maven-compat/3.2.5/maven-compat-3.2.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/wagon/wagon-provider-api/2.8/wagon-provider-api-2.8.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/wagon/wagon-provider-api/2.8/wagon-provider-api-2.8-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-codegen/2.4.8/swagger-codegen-2.4.8.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-codegen/2.4.8/swagger-codegen-2.4.8-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-parser/1.0.46/swagger-parser-1.0.46.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-parser/1.0.46/swagger-parser-1.0.46-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-core/1.5.23/swagger-core-1.5.23.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-core/1.5.23/swagger-core-1.5.23-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9.3/jackson-databind-2.9.9.3.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9.3/jackson-databind-2.9.9.3-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.9/jackson-dataformat-yaml-2.9.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.9/jackson-dataformat-yaml-2.9.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/yaml/snakeyaml/1.23/snakeyaml-1.23-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-models/1.5.23/swagger-models-1.5.23.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-models/1.5.23/swagger-models-1.5.23-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-annotations/1.5.23/swagger-annotations-1.5.23.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-annotations/1.5.23/swagger-annotations-1.5.23-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/slf4j/slf4j-ext/1.7.28/slf4j-ext-1.7.28.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/slf4j/slf4j-ext/1.7.28/slf4j-ext-1.7.28-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/commons-io/commons-io/2.4/commons-io-2.4.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/commons-io/commons-io/2.4/commons-io-2.4-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-compat-spec-parser/1.0.46/swagger-compat-spec-parser-1.0.46.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/swagger/swagger-compat-spec-parser/1.0.46/swagger-compat-spec-parser-1.0.46-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/java-json-tools/json-schema-validator/2.2.8/json-schema-validator-2.2.8.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/java-json-tools/json-schema-validator/2.2.8/json-schema-validator-2.2.8-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/java-json-tools/json-schema-core/1.2.8/json-schema-core-1.2.8.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/java-json-tools/json-schema-core/1.2.8/json-schema-core-1.2.8-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/mozilla/rhino/1.7R4/rhino-1.7R4.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/mozilla/rhino/1.7R4/rhino-1.7R4-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/fge/jackson-coreutils/1.6/jackson-coreutils-1.6.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/fge/jackson-coreutils/1.6/jackson-coreutils-1.6-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/fge/msg-simple/1.1/msg-simple-1.1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/fge/msg-simple/1.1/msg-simple-1.1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/fge/btf/1.2/btf-1.2.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/fge/btf/1.2/btf-1.2-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/fge/uri-template/0.9/uri-template-0.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/fge/uri-template/0.9/uri-template-0.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/mail/mailapi/1.4.3/mailapi-1.4.3.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/mail/mailapi/1.4.3/mailapi-1.4.3-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/javax/activation/activation/1.1/activation-1.1-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/joda-time/joda-time/2.10.4/joda-time-2.10.4.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/joda-time/joda-time/2.10.4/joda-time-2.10.4-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/googlecode/libphonenumber/libphonenumber/8.0.0/libphonenumber-8.0.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/googlecode/libphonenumber/libphonenumber/8.0.0/libphonenumber-8.0.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/github/fge/json-patch/1.6/json-patch-1.6.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/github/fge/json-patch/1.6/json-patch-1.6-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/samskivert/jmustache/1.14/jmustache-1.14.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/samskivert/jmustache/1.14/jmustache-1.14-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/slf4j/slf4j-simple/1.7.28/slf4j-simple-1.7.28.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/slf4j/slf4j-simple/1.7.28/slf4j-simple-1.7.28-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/atlassian/commonmark/commonmark/0.9.0/commonmark-0.9.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/atlassian/commonmark/commonmark/0.9.0/commonmark-0.9.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.9/jackson-datatype-jsr310-2.9.9.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.9/jackson-datatype-jsr310-2.9.9-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/squareup/okio/okio/1.6.0/okio-1.6.0-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/squareup/okhttp/logging-interceptor/2.7.5/logging-interceptor-2.7.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/squareup/okhttp/logging-interceptor/2.7.5/logging-interceptor-2.7.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/io/gsonfire/gson-fire/1.8.2/gson-fire-1.8.2.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/io/gsonfire/gson-fire/1.8.2/gson-fire-1.8.2-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/com/google/code/gson/gson/2.8.5/gson-2.8.5-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/threeten/threetenbp/1.3.6/threetenbp-1.3.6.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/threeten/threetenbp/1.3.6/threetenbp-1.3.6-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- <orderEntry type="module-library" exported="">
- <library>
- <CLASSES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-web/5.1.10.RELEASE/spring-web-5.1.10.RELEASE.jar!/"/>
- </CLASSES>
- <SOURCES>
- <root url="jar:///root/.m2/repository/org/springframework/spring-web/5.1.10.RELEASE/spring-web-5.1.10.RELEASE-sources.jar!/"/>
- </SOURCES>
- </library>
- </orderEntry>
- </component>
- <component name="ModuleRootManager"/>
- <!-- If it's a war project:
- <component name="WebModuleProperties">
- <containerElement type="module" name="${dep.artifactId}">
- <attribute name="method" value="1" />
- <attribute name="URI" value="/WEB-INF/classes" />
- </containerElement>
- <containerElement type="library" level="module" name="${dep.artifactId}">
- <attribute name="method" value="1" />
- <attribute name="URI" value="/WEB-INF/lib/${dep.systemPath.name}" />
- </containerElement>
- <deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/${pom.build.warSourceDirectory}/WEB-INF/web.xml" version="" />
- <webroots>
- <root url="file://$MODULE_DIR$/${pom.build.warSourceDirectory}" relative="/" />
- </webroots>
- </component>
- -->
-</module>
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.ipr b/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.ipr
deleted file mode 100644
index 49d99c0..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.ipr
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you 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.
--->
-<project version="4" relativePaths="false">
- <component name="ProjectRootManager" version="2" assert-keyword="true" project-jdk-name="1.8" jdk-15="true" languageLevel="JDK_1_8"/>
- <component name="CodeStyleManager">
- <option name="USE_DEFAULT_CODE_STYLE_SCHEME" value="true"/>
- <option name="CODE_STYLE_SCHEME" value=""/>
- </component>
- <component name="libraryTable"/>
- <component name="CompilerConfiguration">
- <option name="DEFAULT_COMPILER" value="Javac"/>
- <option name="CLEAR_OUTPUT_DIRECTORY" value="false"/>
- <!--
- <wildcardResourcePatterns>
- <entry name="${wildcardResourcePattern}"/>
- </wildcardResourcePatterns>
- -->
- <wildcardResourcePatterns>
- <entry name="!?*.java"/>
- </wildcardResourcePatterns>
- </component>
- <component name="JavacSettings">
- <option name="DEBUGGING_INFO" value="true"/>
- <option name="GENERATE_NO_WARNINGS" value="false"/>
- <option name="DEPRECATION" value="true"/>
- <option name="ADDITIONAL_OPTIONS_STRING" value=""/>
- <option name="MAXIMUM_HEAP_SIZE" value="128"/>
- <option name="USE_GENERICS_COMPILER" value="false"/>
- </component>
- <component name="JikesSettings">
- <option name="DEBUGGING_INFO" value="true"/>
- <option name="DEPRECATION" value="true"/>
- <option name="GENERATE_NO_WARNINGS" value="false"/>
- <option name="GENERATE_MAKE_FILE_DEPENDENCIES" value="false"/>
- <option name="DO_FULL_DEPENDENCE_CHECK" value="false"/>
- <option name="IS_INCREMENTAL_MODE" value="false"/>
- <option name="IS_EMACS_ERRORS_MODE" value="true"/>
- <option name="ADDITIONAL_OPTIONS_STRING" value=""/>
- <option name="MAXIMUM_HEAP_SIZE" value="128"/>
- </component>
- <component name="AntConfiguration">
- <option name="IS_AUTOSCROLL_TO_SOURCE" value="false"/>
- <option name="FILTER_TARGETS" value="false"/>
- </component>
- <component name="JavadocGenerationManager">
- <option name="OUTPUT_DIRECTORY"/>
- <option name="OPTION_SCOPE" value="protected"/>
- <option name="OPTION_HIERARCHY" value="false"/>
- <option name="OPTION_NAVIGATOR" value="false"/>
- <option name="OPTION_INDEX" value="false"/>
- <option name="OPTION_SEPARATE_INDEX" value="false"/>
- <option name="OPTION_USE_1_1" value="false"/>
- <option name="OPTION_DOCUMENT_TAG_USE" value="false"/>
- <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false"/>
- <option name="OPTION_DOCUMENT_TAG_VERSION" value="false"/>
- <option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="false"/>
- <option name="OPTION_DEPRECATED_LIST" value="false"/>
- <option name="OTHER_OPTIONS"/>
- <option name="HEAP_SIZE"/>
- <option name="OPEN_IN_BROWSER" value="false"/>
- </component>
- <component name="JUnitProjectSettings">
- <option name="TEST_RUNNER" value="UI"/>
- </component>
- <component name="EntryPointsManager">
- <entry_points/>
- </component>
- <component name="DataSourceManager"/>
- <component name="ExportToHTMLSettings">
- <option name="PRINT_LINE_NUMBERS" value="false"/>
- <option name="OPEN_IN_BROWSER" value="false"/>
- <option name="OUTPUT_DIRECTORY"/>
- </component>
- <component name="ImportConfiguration">
- <option name="VENDOR"/>
- <option name="RELEASE_TAG"/>
- <option name="LOG_MESSAGE"/>
- <option name="CHECKOUT_AFTER_IMPORT" value="true"/>
- </component>
- <component name="ProjectModuleManager">
- <modules>
- <!-- module filepath="$$PROJECT_DIR$$/${pom.artifactId}.iml"/ -->
- <module filepath="$PROJECT_DIR$/a1-med-api.iml"/>
- </modules>
- </component>
- <UsedPathMacros>
- <!--<macro name="cargo"></macro>-->
- </UsedPathMacros>
-</project>
diff --git a/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.iws b/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.iws
deleted file mode 100644
index 03c854e..0000000
--- a/near-rt-ric-simulator/nearric-simulator/a1-med-api/a1-med-api.iws
+++ /dev/null
@@ -1,418 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements. See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership. The ASF licenses this file
-to you 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.
--->
-<project version="4" relativePaths="false">
- <component name="LvcsProjectConfiguration">
- <option name="ADD_LABEL_ON_PROJECT_OPEN" value="true"/>
- <option name="ADD_LABEL_ON_PROJECT_COMPILATION" value="true"/>
- <option name="ADD_LABEL_ON_FILE_PACKAGE_COMPILATION" value="true"/>
- <option name="ADD_LABEL_ON_PROJECT_MAKE" value="true"/>
- <option name="ADD_LABEL_ON_RUNNING" value="true"/>
- <option name="ADD_LABEL_ON_DEBUGGING" value="true"/>
- <option name="ADD_LABEL_ON_UNIT_TEST_PASSED" value="true"/>
- <option name="ADD_LABEL_ON_UNIT_TEST_FAILED" value="true"/>
- </component>
- <component name="PropertiesComponent">
- <property name="MemberChooser.copyJavadoc" value="false"/>
- <property name="GoToClass.includeLibraries" value="false"/>
- <property name="MemberChooser.showClasses" value="true"/>
- <property name="MemberChooser.sorted" value="false"/>
- <property name="GoToFile.includeJavaFiles" value="false"/>
- <property name="GoToClass.toSaveIncludeLibraries" value="false"/>
- </component>
- <component name="ToolWindowManager">
- <frame x="-4" y="-4" width="1032" height="746" extended-state="6"/>
- <editor active="false"/>
- <layout>
- <window_info id="CVS" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="-1"/>
- <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="7"/>
- <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="0"/>
- <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="1"/>
- <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="1"/>
- <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="-1"/>
- <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.4" order="6"/>
- <window_info id="Aspects" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="-1"/>
- <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="1"/>
- <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="2"/>
- <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="2"/>
- <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.4" order="4"/>
- <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="sliding" type="sliding" visible="false" weight="0.4" order="0"/>
- <window_info id="Web" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="2"/>
- <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="0"/>
- <window_info id="EJB" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="3"/>
- <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="5"/>
- </layout>
- </component>
- <component name="ErrorTreeViewConfiguration">
- <option name="IS_AUTOSCROLL_TO_SOURCE" value="false"/>
- <option name="HIDE_WARNINGS" value="false"/>
- </component>
- <component name="StructureViewFactory">
- <option name="SORT_MODE" value="0"/>
- <option name="GROUP_INHERITED" value="true"/>
- <option name="AUTOSCROLL_MODE" value="true"/>
- <option name="SHOW_FIELDS" value="true"/>
- <option name="AUTOSCROLL_FROM_SOURCE" value="false"/>
- <option name="GROUP_GETTERS_AND_SETTERS" value="true"/>
- <option name="SHOW_INHERITED" value="false"/>
- <option name="HIDE_NOT_PUBLIC" value="false"/>
- </component>
- <component name="ProjectViewSettings">
- <navigator currentView="ProjectPane" flattenPackages="false" showMembers="false" showStructure="false" autoscrollToSource="false" splitterProportion="0.5"/>
- <view id="ProjectPane">
- <expanded_node type="directory" url="file://$PROJECT_DIR$"/>
- </view>
- <view id="SourcepathPane"/>
- <view id="ClasspathPane"/>
- </component>
- <component name="Commander">
- <leftPanel view="Project"/>
- <rightPanel view="Project"/>
- <splitter proportion="0.5"/>
- </component>
- <component name="AspectsView"/>
- <component name="SelectInManager"/>
- <component name="HierarchyBrowserManager">
- <option name="SHOW_PACKAGES" value="false"/>
- <option name="IS_AUTOSCROLL_TO_SOURCE" value="false"/>
- <option name="SORT_ALPHABETICALLY" value="false"/>
- </component>
- <component name="TodoView" selected-index="0">
- <todo-panel id="selected-file">
- <are-packages-shown value="false"/>
- <flatten-packages value="false"/>
- <is-autoscroll-to-source value="true"/>
- </todo-panel>
- <todo-panel id="all">
- <are-packages-shown value="true"/>
- <flatten-packages value="false"/>
- <is-autoscroll-to-source value="true"/>
- </todo-panel>
- </component>
- <component name="editorManager"/>
- <component name="editorHistoryManager"/>
- <component name="DaemonCodeAnalyzer">
- <disable_hints/>
- </component>
- <component name="InspectionManager">
- <option name="AUTOSCROLL_TO_SOURCE" value="false"/>
- <option name="SPLITTER_PROPORTION" value="0.5"/>
- <profile name="Default"/>
- </component>
- <component name="BookmarkManager"/>
- <component name="DebuggerManager">
- <line_breakpoints/>
- <exception_breakpoints>
- <breakpoint_any>
- <option name="NOTIFY_CAUGHT" value="true"/>
- <option name="NOTIFY_UNCAUGHT" value="true"/>
- <option name="ENABLED" value="false"/>
- <option name="SUSPEND_VM" value="true"/>
- <option name="COUNT_FILTER_ENABLED" value="false"/>
- <option name="COUNT_FILTER" value="0"/>
- <option name="CONDITION_ENABLED" value="false"/>
- <option name="CONDITION"/>
- <option name="LOG_ENABLED" value="false"/>
- <option name="LOG_EXPRESSION_ENABLED" value="false"/>
- <option name="LOG_MESSAGE"/>
- <option name="CLASS_FILTERS_ENABLED" value="false"/>
- <option name="INVERSE_CLASS_FILLTERS" value="false"/>
- <option name="SUSPEND_POLICY" value="SuspendAll"/>
- </breakpoint_any>
- </exception_breakpoints>
- <field_breakpoints/>
- <method_breakpoints/>
- </component>
- <component name="DebuggerSettings">
- <option name="TRACING_FILTERS_ENABLED" value="true"/>
- <option name="TOSTRING_CLASSES_ENABLED" value="false"/>
- <option name="VALUE_LOOKUP_DELAY" value="700"/>
- <option name="DEBUGGER_TRANSPORT" value="0"/>
- <option name="FORCE_CLASSIC_VM" value="true"/>
- <option name="HIDE_DEBUGGER_ON_PROCESS_TERMINATION" value="false"/>
- <option name="SKIP_SYNTHETIC_METHODS" value="true"/>
- <option name="SKIP_CONSTRUCTORS" value="false"/>
- <option name="STEP_THREAD_SUSPEND_POLICY" value="SuspendThread"/>
- <default_breakpoint_settings>
- <option name="NOTIFY_CAUGHT" value="true"/>
- <option name="NOTIFY_UNCAUGHT" value="true"/>
- <option name="WATCH_MODIFICATION" value="true"/>
- <option name="WATCH_ACCESS" value="true"/>
- <option name="WATCH_ENTRY" value="true"/>
- <option name="WATCH_EXIT" value="true"/>
- <option name="ENABLED" value="true"/>
- <option name="SUSPEND_VM" value="true"/>
- <option name="COUNT_FILTER_ENABLED" value="false"/>
- <option name="COUNT_FILTER" value="0"/>
- <option name="CONDITION_ENABLED" value="false"/>
- <option name="CONDITION"/>
- <option name="LOG_ENABLED" value="false"/>
- <option name="LOG_EXPRESSION_ENABLED" value="false"/>
- <option name="LOG_MESSAGE"/>
- <option name="CLASS_FILTERS_ENABLED" value="false"/>
- <option name="INVERSE_CLASS_FILLTERS" value="false"/>
- <option name="SUSPEND_POLICY" value="SuspendAll"/>
- </default_breakpoint_settings>
- <filter>
- <option name="PATTERN" value="com.sun.*"/>
- <option name="ENABLED" value="true"/>
- </filter>
- <filter>
- <option name="PATTERN" value="java.*"/>
- <option name="ENABLED" value="true"/>
- </filter>
- <filter>
- <option name="PATTERN" value="javax.*"/>
- <option name="ENABLED" value="true"/>
- </filter>
- <filter>
- <option name="PATTERN" value="org.omg.*"/>
- <option name="ENABLED" value="true"/>
- </filter>
- <filter>
- <option name="PATTERN" value="sun.*"/>
- <option name="ENABLED" value="true"/>
- </filter>
- <filter>
- <option name="PATTERN" value="junit.*"/>
- <option name="ENABLED" value="true"/>
- </filter>
- </component>
- <component name="CompilerWorkspaceConfiguration">
- <option name="COMPILE_IN_BACKGROUND" value="false"/>
- <option name="AUTO_SHOW_ERRORS_IN_EDITOR" value="true"/>
- </component>
- <component name="RunManager">
- <activeType name="Application"/>
- <configuration selected="false" default="true" type="Applet" factoryName="Applet">
- <module name=""/>
- <option name="MAIN_CLASS_NAME"/>
- <option name="HTML_FILE_NAME"/>
- <option name="HTML_USED" value="false"/>
- <option name="WIDTH" value="400"/>
- <option name="HEIGHT" value="300"/>
- <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy"/>
- <option name="VM_PARAMETERS"/>
- </configuration>
- <configuration selected="false" default="true" type="Remote" factoryName="Remote">
- <option name="USE_SOCKET_TRANSPORT" value="true"/>
- <option name="SERVER_MODE" value="false"/>
- <option name="SHMEM_ADDRESS" value="javadebug"/>
- <option name="HOST" value="localhost"/>
- <option name="PORT" value="5005"/>
- </configuration>
- <configuration selected="false" default="true" type="Application" factoryName="Application">
- <option name="MAIN_CLASS_NAME"/>
- <option name="VM_PARAMETERS"/>
- <option name="PROGRAM_PARAMETERS"/>
- <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$"/>
- <module name=""/>
- </configuration>
- <configuration selected="false" default="true" type="JUnit" factoryName="JUnit">
- <module name=""/>
- <option name="PACKAGE_NAME"/>
- <option name="MAIN_CLASS_NAME"/>
- <option name="METHOD_NAME"/>
- <option name="TEST_OBJECT" value="class"/>
- <option name="VM_PARAMETERS"/>
- <option name="PARAMETERS"/>
- <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$"/>
- <option name="ADDITIONAL_CLASS_PATH"/>
- <option name="TEST_SEARCH_SCOPE">
- <value defaultName="wholeProject"/>
- </option>
- </configuration>
- </component>
- <component name="VcsManagerConfiguration">
- <option name="ACTIVE_VCS_NAME" value=""/>
- <option name="STATE" value="0"/>
- </component>
- <component name="VssConfiguration">
- <CheckoutOptions>
- <option name="COMMENT" value=""/>
- <option name="DO_NOT_GET_LATEST_VERSION" value="false"/>
- <option name="REPLACE_WRITABLE" value="false"/>
- <option name="RECURSIVE" value="false"/>
- </CheckoutOptions>
- <CheckinOptions>
- <option name="COMMENT" value=""/>
- <option name="KEEP_CHECKED_OUT" value="false"/>
- <option name="RECURSIVE" value="false"/>
- </CheckinOptions>
- <AddOptions>
- <option name="COMMENT" value=""/>
- <option name="STORE_ONLY_LATEST_VERSION" value="false"/>
- <option name="CHECK_OUT_IMMEDIATELY" value="false"/>
- <option name="FILE_TYPE" value="0"/>
- </AddOptions>
- <UndocheckoutOptions>
- <option name="MAKE_WRITABLE" value="false"/>
- <option name="REPLACE_LOCAL_COPY" value="0"/>
- <option name="RECURSIVE" value="false"/>
- </UndocheckoutOptions>
- <DiffOptions>
- <option name="IGNORE_WHITE_SPACE" value="false"/>
- <option name="IGNORE_CASE" value="false"/>
- </DiffOptions>
- <GetOptions>
- <option name="REPLACE_WRITABLE" value="0"/>
- <option name="MAKE_WRITABLE" value="false"/>
- <option name="RECURSIVE" value="false"/>
- </GetOptions>
- <option name="CLIENT_PATH" value=""/>
- <option name="SRCSAFEINI_PATH" value=""/>
- <option name="USER_NAME" value=""/>
- <option name="PWD" value=""/>
- <option name="SHOW_CHECKOUT_OPTIONS" value="true"/>
- <option name="SHOW_ADD_OPTIONS" value="true"/>
- <option name="SHOW_UNDOCHECKOUT_OPTIONS" value="true"/>
- <option name="SHOW_DIFF_OPTIONS" value="true"/>
- <option name="SHOW_GET_OPTIONS" value="true"/>
- <option name="USE_EXTERNAL_DIFF" value="false"/>
- <option name="EXTERNAL_DIFF_PATH" value=""/>
- <option name="REUSE_LAST_COMMENT" value="false"/>
- <option name="PUT_FOCUS_INTO_COMMENT" value="false"/>
- <option name="SHOW_CHECKIN_OPTIONS" value="true"/>
- <option name="LAST_COMMIT_MESSAGE" value=""/>
- <option name="CHECKIN_DIALOG_SPLITTER_PROPORTION" value="0.8"/>
- </component>
- <component name="CheckinPanelState"/>
- <component name="WebViewSettings">
- <webview flattenPackages="false" showMembers="false" autoscrollToSource="false"/>
- </component>
- <component name="EjbViewSettings">
- <EjbView showMembers="false" autoscrollToSource="false"/>
- </component>
- <component name="AppServerRunManager"/>
- <component name="StarteamConfiguration">
- <option name="SERVER" value=""/>
- <option name="PORT" value="49201"/>
- <option name="USER" value=""/>
- <option name="PASSWORD" value=""/>
- <option name="PROJECT" value=""/>
- <option name="VIEW" value=""/>
- <option name="ALTERNATIVE_WORKING_PATH" value=""/>
- <option name="PUT_FOCUS_INTO_COMMENT" value="false"/>
- <option name="SHOW_CHECKIN_OPTIONS" value="true"/>
- <option name="LAST_COMMIT_MESSAGE" value=""/>
- <option name="CHECKIN_DIALOG_SPLITTER_PROPORTION" value="0.8"/>
- </component>
- <component name="Cvs2Configuration">
- <option name="ON_FILE_ADDING" value="0"/>
- <option name="ON_FILE_REMOVING" value="0"/>
- <option name="PRUNE_EMPTY_DIRECTORIES" value="true"/>
- <option name="SHOW_UPDATE_OPTIONS" value="true"/>
- <option name="SHOW_ADD_OPTIONS" value="true"/>
- <option name="SHOW_REMOVE_OPTIONS" value="true"/>
- <option name="MERGING_MODE" value="0"/>
- <option name="MERGE_WITH_BRANCH1_NAME" value="HEAD"/>
- <option name="MERGE_WITH_BRANCH2_NAME" value="HEAD"/>
- <option name="RESET_STICKY" value="false"/>
- <option name="CREATE_NEW_DIRECTORIES" value="true"/>
- <option name="DEFAULT_TEXT_FILE_SUBSTITUTION" value="kv"/>
- <option name="PROCESS_UNKNOWN_FILES" value="false"/>
- <option name="PROCESS_DELETED_FILES" value="false"/>
- <option name="SHOW_EDIT_DIALOG" value="true"/>
- <option name="RESERVED_EDIT" value="false"/>
- <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6"/>
- <option name="SHOW_CHECKOUT_OPTIONS" value="true"/>
- <option name="CHECKOUT_DATE_OR_REVISION_SETTINGS">
- <value>
- <option name="BRANCH" value=""/>
- <option name="DATE" value=""/>
- <option name="USE_BRANCH" value="false"/>
- <option name="USE_DATE" value="false"/>
- </value>
- </option>
- <option name="UPDATE_DATE_OR_REVISION_SETTINGS">
- <value>
- <option name="BRANCH" value=""/>
- <option name="DATE" value=""/>
- <option name="USE_BRANCH" value="false"/>
- <option name="USE_DATE" value="false"/>
- </value>
- </option>
- <option name="SHOW_CHANGES_REVISION_SETTINGS">
- <value>
- <option name="BRANCH" value=""/>
- <option name="DATE" value=""/>
- <option name="USE_BRANCH" value="false"/>
- <option name="USE_DATE" value="false"/>
- </value>
- </option>
- <option name="SHOW_OUTPUT" value="false"/>
- <option name="SHOW_FILE_HISTORY_AS_TREE" value="false"/>
- <option name="UPDATE_GROUP_BY_PACKAGES" value="false"/>
- <option name="ADD_WATCH_INDEX" value="0"/>
- <option name="REMOVE_WATCH_INDEX" value="0"/>
- <option name="UPDATE_KEYWORD_SUBSTITUTION"/>
- <option name="MAKE_NEW_FILES_READONLY" value="false"/>
- <option name="SHOW_CORRUPTED_PROJECT_FILES" value="0"/>
- <option name="TAG_AFTER_FILE_COMMIT" value="false"/>
- <option name="TAG_AFTER_FILE_COMMIT_NAME" value=""/>
- <option name="TAG_AFTER_PROJECT_COMMIT" value="false"/>
- <option name="TAG_AFTER_PROJECT_COMMIT_NAME" value=""/>
- <option name="PUT_FOCUS_INTO_COMMENT" value="false"/>
- <option name="SHOW_CHECKIN_OPTIONS" value="true"/>
- <option name="FORCE_NON_EMPTY_COMMENT" value="false"/>
- <option name="LAST_COMMIT_MESSAGE" value=""/>
- <option name="SAVE_LAST_COMMIT_MESSAGE" value="true"/>
- <option name="CHECKIN_DIALOG_SPLITTER_PROPORTION" value="0.8"/>
- <option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false"/>
- <option name="OPTIMIZE_IMPORTS_BEFORE_FILE_COMMIT" value="false"/>
- <option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false"/>
- <option name="REFORMAT_BEFORE_FILE_COMMIT" value="false"/>
- <option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8"/>
- <option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5"/>
- </component>
- <component name="CvsTabbedWindow"/>
- <component name="SvnConfiguration">
- <option name="USER" value=""/>
- <option name="PASSWORD" value=""/>
- <option name="AUTO_ADD_FILES" value="0"/>
- <option name="AUTO_DEL_FILES" value="0"/>
- </component>
- <component name="PerforceConfiguration">
- <option name="PORT" value="magic:1666"/>
- <option name="USER" value=""/>
- <option name="PASSWORD" value=""/>
- <option name="CLIENT" value=""/>
- <option name="TRACE" value="false"/>
- <option name="PERFORCE_STATUS" value="true"/>
- <option name="CHANGELIST_OPTION" value="false"/>
- <option name="SYSTEMROOT" value=""/>
- <option name="P4_EXECUTABLE" value="p4"/>
- <option name="SHOW_BRANCH_HISTORY" value="false"/>
- <option name="GENERATE_COMMENT" value="false"/>
- <option name="SYNC_OPTION" value="Sync"/>
- <option name="PUT_FOCUS_INTO_COMMENT" value="false"/>
- <option name="SHOW_CHECKIN_OPTIONS" value="true"/>
- <option name="FORCE_NON_EMPTY_COMMENT" value="true"/>
- <option name="LAST_COMMIT_MESSAGE" value=""/>
- <option name="SAVE_LAST_COMMIT_MESSAGE" value="true"/>
- <option name="CHECKIN_DIALOG_SPLITTER_PROPORTION" value="0.8"/>
- <option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false"/>
- <option name="OPTIMIZE_IMPORTS_BEFORE_FILE_COMMIT" value="false"/>
- <option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false"/>
- <option name="REFORMAT_BEFORE_FILE_COMMIT" value="false"/>
- <option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8"/>
- <option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5"/>
- </component>
-</project>
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/.classpath b/near-rt-ric-simulator/nearric-simulator/nearric-service/.classpath
deleted file mode 100644
index 91d1e29..0000000
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/.classpath
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="src" output="target/classes" path="src/main/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="src" output="target/test-classes" path="src/test/java">
- <attributes>
- <attribute name="test" value="true"/>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="lib" path="/a1-med-api/target/a1-med-api-1.0.0-SNAPSHOT.jar"/>
- <classpathentry kind="output" path="target/classes"/>
-</classpath>
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/.project b/near-rt-ric-simulator/nearric-simulator/nearric-service/.project
deleted file mode 100644
index 6fac18c..0000000
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/.project
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>nearric-service</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.m2e.core.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.eclipse.m2e.core.maven2Nature</nature>
- </natures>
-</projectDescription>
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.core.resources.prefs b/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 839d647..0000000
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,5 +0,0 @@
-eclipse.preferences.version=1
-encoding//src/main/java=UTF-8
-encoding//src/main/resources=UTF-8
-encoding//src/test/java=UTF-8
-encoding/<project>=UTF-8
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.jdt.core.prefs b/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index ebb47b7..0000000
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,16 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.methodParameters=generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.8
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
-org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
-org.eclipse.jdt.core.compiler.release=disabled
-org.eclipse.jdt.core.compiler.source=1.8
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.m2e.core.prefs b/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.m2e.core.prefs
deleted file mode 100644
index f897a7f..0000000
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/.settings/org.eclipse.m2e.core.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-activeProfiles=
-eclipse.preferences.version=1
-resolveWorkspaceProjects=true
-version=1
diff --git a/near-rt-ric-simulator/nearric-simulator/nearric-service/Dockerfile b/near-rt-ric-simulator/nearric-simulator/nearric-service/Dockerfile
deleted file mode 100644
index 4a85d00..0000000
--- a/near-rt-ric-simulator/nearric-simulator/nearric-service/Dockerfile
+++ /dev/null
@@ -1,10 +0,0 @@
-
-FROM openjdk:8-jre-alpine
-
-ARG JAR_FILE
-
-WORKDIR /opt/app/nearricsimulator
-
-COPY ${JAR_FILE} nearric-simulator.jar
-
-ENTRYPOINT ["/usr/bin/java", "-jar", "/opt/app/nearricsimulator/nearric-simulator.jar"]
\ No newline at end of file
diff --git a/near-rt-ric-simulator/nearric-simulator/pom.xml b/near-rt-ric-simulator/pom.xml
similarity index 88%
rename from near-rt-ric-simulator/nearric-simulator/pom.xml
rename to near-rt-ric-simulator/pom.xml
index e57caef..b8752c6 100644
--- a/near-rt-ric-simulator/nearric-simulator/pom.xml
+++ b/near-rt-ric-simulator/pom.xml
@@ -17,6 +17,7 @@
<properties>
<spring.boot.version>2.1.9.RELEASE</spring.boot.version>
+ <java.version>11</java.version>
</properties>
<dependencyManagement>
@@ -46,6 +47,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
+ <version>3.8.1</version>
+ <configuration>
+ <release>${java.version}</release>
+ </configuration>
</plugin>
</plugins>
</build>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..c80c558
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ============LICENSE_START=======================================================
+ Copyright (C) 2019-2020 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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.oransc</groupId>
+ <artifactId>nonrtric</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <name>nonrtric</name>
+ <modules>
+ <module>dashboard</module>
+ <module>sdnc-a1-controller</module>
+ <module>near-rt-ric-simulator</module>
+ </modules>
+</project>
diff --git a/sdnc-a1-controller/.gitignore b/sdnc-a1-controller/.gitignore
new file mode 100755
index 0000000..cd1773f
--- /dev/null
+++ b/sdnc-a1-controller/.gitignore
@@ -0,0 +1,32 @@
+#####standard .git ignore entries#####
+
+## IDE Specific Files ##
+org.eclipse.core.resources.prefs
+.classpath
+.project
+.settings
+.idea
+.externalToolBuilders
+.checkstyle
+maven-eclipse.xml
+workspace
+.pydevproject
+
+## Compilation Files ##
+*.class
+**/target
+target
+target-ide
+MANIFEST.MF
+
+## Misc Ignores (OS specific etc) ##
+bin/
+dist
+*~
+*.ipr
+*.iml
+*.iws
+classes
+out/
+.DS_STORE
+.metadata
diff --git a/sdnc-a1-controller/northbound/features/features-sdnc-northbound/pom.xml b/sdnc-a1-controller/northbound/features/features-sdnc-northbound/pom.xml
index 96028b4..6ab5343 100644
--- a/sdnc-a1-controller/northbound/features/features-sdnc-northbound/pom.xml
+++ b/sdnc-a1-controller/northbound/features/features-sdnc-northbound/pom.xml
@@ -2,6 +2,14 @@
<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">
<modelVersion>4.0.0</modelVersion>
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>feature-repo-parent</artifactId>
diff --git a/sdnc-a1-controller/northbound/features/sdnc-northbound-all/pom.xml b/sdnc-a1-controller/northbound/features/sdnc-northbound-all/pom.xml
index b561e44..5c5c9cd 100644
--- a/sdnc-a1-controller/northbound/features/sdnc-northbound-all/pom.xml
+++ b/sdnc-a1-controller/northbound/features/sdnc-northbound-all/pom.xml
@@ -2,6 +2,14 @@
<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">
<modelVersion>4.0.0</modelVersion>
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>single-feature-parent</artifactId>
diff --git a/sdnc-a1-controller/northbound/nonrt-ric-api/model/pom.xml b/sdnc-a1-controller/northbound/nonrt-ric-api/model/pom.xml
index 8bef79e..322aac5 100644
--- a/sdnc-a1-controller/northbound/nonrt-ric-api/model/pom.xml
+++ b/sdnc-a1-controller/northbound/nonrt-ric-api/model/pom.xml
@@ -21,6 +21,14 @@
<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">
<modelVersion>4.0.0</modelVersion>
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>binding-parent</artifactId>
@@ -53,7 +61,7 @@
<executions>
<execution>
<configuration>
- <executable>python</executable>
+ <executable>python3</executable>
<arguments>
<argument>scripts/python/yang2props.py</argument>
<argument>src/main/yang/NONRT-RIC-API.yang</argument>
@@ -68,6 +76,13 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <source>8</source>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>
diff --git a/sdnc-a1-controller/northbound/nonrt-ric-api/model/scripts/python/yang2props.py b/sdnc-a1-controller/northbound/nonrt-ric-api/model/scripts/python/yang2props.py
index 559d31b..951ddf5 100755
--- a/sdnc-a1-controller/northbound/nonrt-ric-api/model/scripts/python/yang2props.py
+++ b/sdnc-a1-controller/northbound/nonrt-ric-api/model/scripts/python/yang2props.py
@@ -18,34 +18,33 @@
li = []
if len(sys.argv) < 3:
- print 'yang2props.py <input yang> <output properties>'
+ print('yang2props.py <input yang> <output properties>')
sys.exit(2)
with open(sys.argv[1], "r") as ins:
for line in ins:
# if we see a leaf save the name for later
if "leaf " in line:
- match = re.search(r'leaf (\S+)', line)
- if match:
- leaf = match.group(1)
+ match = re.search(r'leaf (\S+)', line)
+ if match:
+ leaf = match.group(1)
# if we see enum convert the value to enum format and see if it changed
# if the value is different write a property entry
if "enum " in line:
- match = re.search(r'enum "(\S+)";', line)
- if match:
+ match = re.search(r'enum "(\S+)";', line)
+ if match:
val = match.group(1)
- enum = to_enum(val)
-
+ enum = to_enum(val)
# see if converting to enum changed the string
- if val != enum:
+ if val != enum:
property = "yang."+leaf+"."+enum+"="+val
- if property not in li:
- li.append( property)
+ if property not in li:
+ li.append( property)
# Open output file
-fo = open(sys.argv[2], "wb")
+fo = open(sys.argv[2], "w")
fo.write("# yang conversion properties \n")
fo.write("# used to convert Enum back to the original yang value \n")
fo.write("\n".join(li))
diff --git a/sdnc-a1-controller/northbound/nonrt-ric-api/provider/pom.xml b/sdnc-a1-controller/northbound/nonrt-ric-api/provider/pom.xml
index 250c016..1bf2274 100644
--- a/sdnc-a1-controller/northbound/nonrt-ric-api/provider/pom.xml
+++ b/sdnc-a1-controller/northbound/nonrt-ric-api/provider/pom.xml
@@ -23,6 +23,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>binding-parent</artifactId>
@@ -37,6 +45,23 @@
<name>sdnc-northbound :: nonrt-ric-api :: ${project.artifactId}</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>0.8.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <source>8</source>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<dependencyManagement>
<dependencies>
<dependency>
diff --git a/sdnc-a1-controller/northbound/pom.xml b/sdnc-a1-controller/northbound/pom.xml
index 19a714d..40c4384 100644
--- a/sdnc-a1-controller/northbound/pom.xml
+++ b/sdnc-a1-controller/northbound/pom.xml
@@ -2,6 +2,14 @@
<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">
<modelVersion>4.0.0</modelVersion>
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>odlparent-lite</artifactId>
diff --git a/sdnc-a1-controller/oam/installation/pom.xml b/sdnc-a1-controller/oam/installation/pom.xml
index 83ce595..301d0bb 100644
--- a/sdnc-a1-controller/oam/installation/pom.xml
+++ b/sdnc-a1-controller/oam/installation/pom.xml
@@ -1,6 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>odlparent-lite</artifactId>
diff --git a/sdnc-a1-controller/oam/installation/sdnc/pom.xml b/sdnc-a1-controller/oam/installation/sdnc/pom.xml
index 46230a9..28d8cc3 100644
--- a/sdnc-a1-controller/oam/installation/sdnc/pom.xml
+++ b/sdnc-a1-controller/oam/installation/sdnc/pom.xml
@@ -1,6 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>odlparent-lite</artifactId>
diff --git a/sdnc-a1-controller/oam/pom.xml b/sdnc-a1-controller/oam/pom.xml
index dfeef93..d805eba 100755
--- a/sdnc-a1-controller/oam/pom.xml
+++ b/sdnc-a1-controller/oam/pom.xml
@@ -2,6 +2,14 @@
<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">
<modelVersion>4.0.0</modelVersion>
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>onap-releases</name>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
+ </repository>
+ </repositories>
+
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>odlparent-lite</artifactId>
@@ -91,6 +99,9 @@
</profile>
<profile>
<id>docker</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
<modules>
<module>installation</module>
</modules>
diff --git a/sdnc-a1-controller/pom.xml b/sdnc-a1-controller/pom.xml
new file mode 100644
index 0000000..349041d
--- /dev/null
+++ b/sdnc-a1-controller/pom.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ============LICENSE_START=======================================================
+ Copyright (C) 2019-2020 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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.onap.sdnc</groupId>
+ <artifactId>sdnc</artifactId>
+ <version>1.7.3-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <name>sdnc</name>
+ <modules>
+ <module>northbound</module>
+ <module>oam</module>
+ </modules>
+</project>