diff options
Diffstat (limited to 'vpp-integration/minimal-distribution')
-rw-r--r-- | vpp-integration/minimal-distribution/asciidoc/Readme.adoc | 3 | ||||
-rw-r--r-- | vpp-integration/minimal-distribution/pom.xml | 107 |
2 files changed, 0 insertions, 110 deletions
diff --git a/vpp-integration/minimal-distribution/asciidoc/Readme.adoc b/vpp-integration/minimal-distribution/asciidoc/Readme.adoc deleted file mode 100644 index 420ac7210..000000000 --- a/vpp-integration/minimal-distribution/asciidoc/Readme.adoc +++ /dev/null @@ -1,3 +0,0 @@ -= vpp-integration-distribution - -Overview of vpp-integration-distribution
\ No newline at end of file diff --git a/vpp-integration/minimal-distribution/pom.xml b/vpp-integration/minimal-distribution/pom.xml deleted file mode 100644 index 83fee5689..000000000 --- a/vpp-integration/minimal-distribution/pom.xml +++ /dev/null @@ -1,107 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Copyright (c) 2015 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. ---> -<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.12-SNAPSHOT</version> - <relativePath>../../common/minimal-distribution-parent</relativePath> - </parent> - - <modelVersion>4.0.0</modelVersion> - <groupId>io.fd.honeycomb.vpp.integration</groupId> - <artifactId>vpp-integration-distribution</artifactId> - <name>${project.artifactId}</name> - <version>1.16.12-SNAPSHOT</version> - - <properties> - <main.class>io.fd.honeycomb.infra.distro.Main</main.class> - <v3po.version>1.16.12-SNAPSHOT</v3po.version> - <lisp.version>1.16.12-SNAPSHOT</lisp.version> - <vpp.common.integration.version>1.16.12-SNAPSHOT</vpp.common.integration.version> - <vppnsh.version>1.16.12-SNAPSHOT</vppnsh.version> - <nat.version>1.16.12-SNAPSHOT</nat.version> - <ioam.version>1.16.12-SNAPSHOT</ioam.version> - - <distribution.modules> - io.fd.honeycomb.vpp.common.integration.VppCommonModule, - io.fd.honeycomb.lisp.LispModule, - io.fd.honeycomb.translate.v3po.V3poModule, - io.fd.honeycomb.nat.NatModule, - // io.fd.honeycomb.vppnsh.impl.VppNshModule, - <!-- Nsh module by default disabled, because it needs vpp-nsh plugin, which is not part of vpp codebase.--> - //io.fd.honeycomb.vppioam.impl.VppIoamModule - <!-- iOAM module by default disabled, because it needs ioam plugin (not part of vpp codebase.)--> - </distribution.modules> - </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> - </plugins> - </build> - - <dependencies> - <dependency> - <groupId>io.fd.honeycomb.vpp</groupId> - <artifactId>vpp-common-integration</artifactId> - <version>${vpp.common.integration.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>io.fd.honeycomb.nat</groupId> - <artifactId>nat2vpp</artifactId> - <version>${nat.version}</version> - </dependency> - <dependency> - <groupId>io.fd.honeycomb.vppioam</groupId> - <artifactId>vppioam-impl</artifactId> - <version>${ioam.version}</version> - </dependency> - </dependencies> -</project> |