From 17ac3b089df1cc33ced623ab4150edcacd4381c6 Mon Sep 17 00:00:00 2001 From: DR695H Date: Thu, 12 Jul 2018 12:45:41 -0400 Subject: adding in a client for sdnc this will be used by people who want to build clients for the network control Change-Id: Icf6b2920746a58fbc52610fe6d0fce74542c06df Issue-ID: SDNC-382 Signed-off-by: DR695H --- .gitignore | 1 + client/.gitignore | 1 + client/pom.xml | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 21 +++++++++++++ 4 files changed, 115 insertions(+) create mode 100644 .gitignore create mode 100644 client/.gitignore create mode 100644 client/pom.xml create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d8fe4fa --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.project diff --git a/client/.gitignore b/client/.gitignore new file mode 100644 index 0000000..b83d222 --- /dev/null +++ b/client/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/client/pom.xml b/client/pom.xml new file mode 100644 index 0000000..374adbf --- /dev/null +++ b/client/pom.xml @@ -0,0 +1,92 @@ + + + + + 4.0.0 + jar + org.onap.sdnc.apps + client + 1.1.0-SNAPSHOT + + ONAP :: ${project.groupId} :: ${project.artifactId} + http://wiki.onap.org + POM to be used for yang2swagger generation of client in SDNC project + + + org.onap.ccsdk.parent + client-parent + 1.1.0-SNAPSHOT + + + + 1.2.0-SNAPSHOT + + + + + + org.onap.sdnc.northbound + generic-resource-api-model + ${northbound.version} + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-dependency-plugin + + org.opendaylight.mdsal.model, org.onap.sdnc.northbound + + + + maven-antrun-plugin + + + org.opendaylight.yangtools + yang-maven-plugin + + + io.swagger + swagger-codegen-maven-plugin + + + + generate + + + + true + true + ${project.build.directory}/generated-sources/swagger + false + false + true + false + false + org.onap.sdnc.apps.client.handler + org.onap.sdnc.apps.client.model + org.onap.sdnc.apps.client.invoker + src/main/java + true + true + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a138692 --- /dev/null +++ b/pom.xml @@ -0,0 +1,21 @@ + + + + + 4.0.0 + pom + org.onap.sdnc + apps + 1.1.0-SNAPSHOT + + ONAP :: ${project.groupId} :: ${project.artifactId} + http://wiki.onap.org + POM to be used for apps in SDNC project + + + client + + + -- cgit 1.2.3-korg