diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-09-06 09:27:24 +0200 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-09-06 07:40:07 +0000 |
commit | 242a61de29d26eb2a47e95e0228ec72555f1a996 (patch) | |
tree | 9730291dcecda426852cf004d59219f411e1f3ce /common/yang-whitelist | |
parent | 34784c7bc9e0e1177b85cd6f7fca57378fc613ad (diff) |
Disable site for yang-whitelist
Should fix merge job issues introduced by HONEYCOMB-389
Change-Id: Ieb937267fdc05492c0f58761cb36b3f45749d042
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'common/yang-whitelist')
-rw-r--r-- | common/yang-whitelist/yang-whitelist-api/pom.xml | 18 | ||||
-rw-r--r-- | common/yang-whitelist/yang-whitelist-impl/pom.xml | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/common/yang-whitelist/yang-whitelist-api/pom.xml b/common/yang-whitelist/yang-whitelist-api/pom.xml index 6d72a766d..384061004 100644 --- a/common/yang-whitelist/yang-whitelist-api/pom.xml +++ b/common/yang-whitelist/yang-whitelist-api/pom.xml @@ -24,11 +24,29 @@ <groupId>io.fd.honeycomb.yang</groupId> <artifactId>yang-whitelist-api</artifactId> <version>1.17.10-SNAPSHOT</version> + <packaging>jar</packaging> + <name>${project.artifactId}</name> <properties> <jaxb-api.version>2.2.12</jaxb-api.version> </properties> + <!-- workaround for HONEYCOMB-393 --> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <skip>true</skip> + <skipDeploy>true</skipDeploy> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> <dependency> <groupId>javax.xml.bind</groupId> diff --git a/common/yang-whitelist/yang-whitelist-impl/pom.xml b/common/yang-whitelist/yang-whitelist-impl/pom.xml index 0e1f02511..7aabce58c 100644 --- a/common/yang-whitelist/yang-whitelist-impl/pom.xml +++ b/common/yang-whitelist/yang-whitelist-impl/pom.xml @@ -24,12 +24,30 @@ <groupId>io.fd.honeycomb.yang</groupId> <artifactId>yang-whitelist-impl</artifactId> <version>1.17.10-SNAPSHOT</version> + <packaging>jar</packaging> + <name>${project.artifactId}</name> <properties> <jaxb-runtime.version>2.2.11</jaxb-runtime.version> <slf4j-simple.version>1.7.25</slf4j-simple.version> </properties> + <!-- workaround for HONEYCOMB-393 --> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <skip>true</skip> + <skipDeploy>true</skipDeploy> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <dependencies> <dependency> <groupId>io.fd.honeycomb.yang</groupId> |