From f6168473dfcf70be0ea85fa0f50d5d88e639e7d6 Mon Sep 17 00:00:00 2001 From: luxin Date: Wed, 7 Mar 2018 11:40:10 +0800 Subject: Create multivimproxy maven project Change-Id: If516a521b3e81328dbd1361c6ce7ce46d919c80c Issue-ID: VFC-790 Signed-off-by: luxin --- .gitignore | 7 +++ deployment/pom.xml | 35 +++++++++++++++ pom.xml | 76 +++++++++++++++++++++++++++++++++ service/pom.xml | 38 +++++++++++++++++ service/src/main/webapp/WEB-INF/web.xml | 24 +++++++++++ version.properties | 13 ++++++ 6 files changed, 193 insertions(+) create mode 100644 .gitignore create mode 100644 deployment/pom.xml create mode 100644 pom.xml create mode 100644 service/pom.xml create mode 100644 service/src/main/webapp/WEB-INF/web.xml create mode 100644 version.properties diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1f25160 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +/target/ +.iml +.project +.settings/ +.checkstyle +.classpath +coverage-report/ diff --git a/deployment/pom.xml b/deployment/pom.xml new file mode 100644 index 0000000..ae8b342 --- /dev/null +++ b/deployment/pom.xml @@ -0,0 +1,35 @@ + + + + 4.0.0 + + org.onap.vfc.nfvo.multivimproxy + vfc-nfvo-multivimproxy + 1.0.0-SNAPSHOT + ../pom.xml + + 1.0.0-SNAPSHOT + vfc-nfvo-multivimproxy-deployment + vfc-nfvo-multivimproxy-deployment + pom + + + UTF-8 + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..7e777b2 --- /dev/null +++ b/pom.xml @@ -0,0 +1,76 @@ + + + + + org.onap.oparent + oparent + 0.1.1 + + 4.0.0 + org.onap.vfc.nfvo.multivimproxy + vfc-nfvo-multivimproxy + pom + 1.0.0-SNAPSHOT + vfc-nfvo-multivimproxy + vfc nfvo multivimproxy + + + vfc-nfvo-multivimproxy + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19 + + true + + **/*Spec* + **/Test*.java + **/*Test.java + **/*TestCase.java + **/Test*.scala + **/*Test.scala + **/*TestCase.scala + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + html + xml + + + + org/**/*Test.class + + + + + + + + + service + deployment + + diff --git a/service/pom.xml b/service/pom.xml new file mode 100644 index 0000000..34e9507 --- /dev/null +++ b/service/pom.xml @@ -0,0 +1,38 @@ + + + + 4.0.0 + + org.onap.vfc.nfvo.multivimproxy + vfc-nfvo-multivimproxy + 1.0.0-SNAPSHOT + ../pom.xml + + + vfc-nfvo-multivimproxy-service + 1.0.0-SNAPSHOT + vfc-nfvo-multivimproxy-service + war + + + junit + junit + 4.12 + + + + diff --git a/service/src/main/webapp/WEB-INF/web.xml b/service/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..55b282e --- /dev/null +++ b/service/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,24 @@ + + + + + + + \ No newline at end of file diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..0a53751 --- /dev/null +++ b/version.properties @@ -0,0 +1,13 @@ +########################################################### +# Versioning variables +# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) +# because they are used in Jenkins, whose plug-in doesn't support + +major=1 +minor=0 +patch=0 + +base_version=${major}.${minor}.${patch} + +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT \ No newline at end of file -- cgit 1.2.3-korg