diff options
author | platania <platania@research.att.com> | 2017-02-16 11:20:22 -0500 |
---|---|---|
committer | platania <platania@research.att.com> | 2017-02-16 11:20:47 -0500 |
commit | 3426556541256f93d2cba65df3b9c8d1d1772861 (patch) | |
tree | 56e5b26481400d35e3e2e36be20df953793e348d /vnfs/honeycomb_plugin/sample_plugin/sample-distribution | |
parent | f525cb9014ae27ddd795f933dee54a78b214a589 (diff) |
Initial OpenECOMP Demo commit
Change-Id: Ibf8696196a7ac2c84ac8aa7cde1982c9c89fb64d
Signed-off-by: platania <platania@research.att.com>
Diffstat (limited to 'vnfs/honeycomb_plugin/sample_plugin/sample-distribution')
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/.DS_Store | bin | 0 -> 6148 bytes | |||
-rwxr-xr-x | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/pom.xml | 106 | ||||
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store | bin | 0 -> 6148 bytes | |||
-rwxr-xr-x | vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java | 41 |
9 files changed, 147 insertions, 0 deletions
diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/.DS_Store Binary files differnew file mode 100644 index 00000000..935eda93 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/pom.xml b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/pom.xml new file mode 100755 index 00000000..0d8ddd77 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/pom.xml @@ -0,0 +1,106 @@ +<?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/xsd/maven-4.0.0.xsd"> + + <!-- <parent> + <groupId>io.fd.honeycomb.common</groupId> + <artifactId>minimal-distribution-parent</artifactId> + <version>1.16.9</version> + </parent> +--> +<parent> +<groupId>io.fd.honeycomb.common</groupId> + <artifactId>minimal-distribution-parent</artifactId> + <version>1.16.9</version> +<relativePath>../parent-pom/pom.xml</relativePath> +</parent> +<!-- +<parent> + <groupId>org.openecomp.demo.vnf</groupId> + <artifactId>demo-aggregator</artifactId> + <version>1.0.0</version> +<relativePath>../../../pom.xml</relativePath> + </parent> +--> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.openecomp.demo.vnf</groupId> + <artifactId>sample-distribution</artifactId> + <version>1.0.0</version> + + <properties> + <main.class>io.fd.honeycomb.vpp.integration.distro.Main</main.class> + <v3po.version>1.16.9</v3po.version> + <lisp.version>1.16.9</lisp.version> + <vpp.common.min.distro.version>1.16.9</vpp.common.min.distro.version> + <vppnsh.version>1.16.9</vppnsh.version> + </properties> + + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.gmaven</groupId> + <artifactId>groovy-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + </plugin> + +<plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> +</plugin> + +<plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-install-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>io.fd.honeycomb.vpp</groupId> + <artifactId>minimal-distribution</artifactId> + <version>${vpp.common.min.distro.version}</version> + </dependency> + <dependency> + <groupId>io.fd.honeycomb.v3po</groupId> + <artifactId>v3po2vpp</artifactId> + <version>${v3po.version}</version> + </dependency> + <dependency> + <groupId>io.fd.honeycomb.lisp</groupId> + <artifactId>lisp2vpp</artifactId> + <version>${lisp.version}</version> + </dependency> + <dependency> + <groupId>io.fd.honeycomb.vppnsh</groupId> + <artifactId>vppnsh-impl</artifactId> + <version>${vppnsh.version}</version> + </dependency> +<dependency> + <groupId>org.openecomp.demo.vnf</groupId> + <artifactId>sample-plugin-impl</artifactId> + <version>1.0.0</version> + </dependency> + </dependencies> + +</project> diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store Binary files differnew file mode 100644 index 00000000..6816049e --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store Binary files differnew file mode 100644 index 00000000..7db2c2e3 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store Binary files differnew file mode 100644 index 00000000..06450486 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store Binary files differnew file mode 100644 index 00000000..47336c35 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store Binary files differnew file mode 100644 index 00000000..0bb0440d --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store Binary files differnew file mode 100644 index 00000000..70a47622 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java new file mode 100755 index 00000000..d16c4221 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2016 Cisco and/or its affiliates. + * + * 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. + */ + +package io.fd.honeycomb.vpp.integration.distro; + +import com.google.common.collect.Lists; +import com.google.inject.Module; +import io.fd.honeycomb.lisp.LispModule; +import io.fd.honeycomb.translate.v3po.V3poModule; +import io.fd.honeycomb.vpp.distro.VppCommonModule; +import io.fd.honeycomb.vppnsh.impl.VppNshModule; +import java.util.List; + +public class Main { + + public static void main(String[] args) { + final List<Module> sampleModules = Lists.newArrayList(io.fd.honeycomb.infra.distro.Main.BASE_MODULES); + + // All the plugins should be listed here + sampleModules.add(new VppCommonModule()); + sampleModules.add(new V3poModule()); + sampleModules.add(new LispModule()); + sampleModules.add(new VppNshModule()); + sampleModules.add(new io.fd.honeycomb.tutorial.Module()); + + io.fd.honeycomb.infra.distro.Main.init(sampleModules); + } +} |