diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-07-01 13:08:58 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-08-14 19:04:08 +0000 |
commit | 135e40799545c6cb73a8854340d7eefaaa68b67e (patch) | |
tree | 8a75eab9c7b5fcd8b8fc04d22275f5d74fa78c69 /tools/fluorine2neon.sh | |
parent | 3388100268069761b5cd13e9af0beb01a9f0c2c5 (diff) |
Update parent poms for ODL Neon
Update third party package versions to align with ODL Neon SR1.
Change-Id: I82da85e6a9581726267be0f9cd64c4eb193ceda3
Issue-ID: CCSDK-1389
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'tools/fluorine2neon.sh')
-rwxr-xr-x | tools/fluorine2neon.sh | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tools/fluorine2neon.sh b/tools/fluorine2neon.sh new file mode 100755 index 00000000..4a513435 --- /dev/null +++ b/tools/fluorine2neon.sh @@ -0,0 +1,47 @@ +#!/usr/bin/env bash + +updatePom() { +export XMLLINT_INDENT=" " +cat $1 | xsltproc -o $1 /tmp/rebase-pom.xslt - +} + +export -f updatePom + +# Copy blueprints to new directory structure +find . -path '*/src/main/resources/org/opendaylight/blueprint/*.xml' -execdir sh -c "mkdir -p ../../../OSGI-INF/blueprint; cp {} ../../../OSGI-INF/blueprint" \; + +# Update ietf-net-types dependencies + +cat <<END > /tmp/rebase-pom.xslt +<?xml version="1.0" encoding="utf-8"?> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:pom="http://maven.apache.org/POM/4.0.0" + xmlns="http://maven.apache.org/POM/4.0.0" + exclude-result-prefixes="pom"> + + <!-- Copy everything that does not match a rewrite rule --> + <xsl:template match="@*|node()"> + <xsl:copy> + <xsl:apply-templates select="@*|node()" /> + </xsl:copy> + </xsl:template> + + <xsl:template match="//pom:dependency[pom:groupId='org.opendaylight.mdsal.model' and pom:artifactId='ietf-inet-types-2013-07-15']"> + <dependency><xsl:text>
 </xsl:text> + <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId><xsl:text>
 </xsl:text> + <artifactId>rfc6991</artifactId><xsl:text>
 </xsl:text> + </dependency><xsl:text>
</xsl:text> + </xsl:template> + + <xsl:template match="//pom:dependency[pom:groupId='org.opendaylight.mdsal.model' and pom:artifactId='ietf-yang-types-20130715']"> + </xsl:template> + + <xsl:template match="//pom:dependency[pom:groupId='org.opendaylight.mdsal.model' and pom:artifactId='mdsal-model-artifacts']"> + </xsl:template> + + <xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="no"/> +</xsl:stylesheet> +END + +find . -name pom.xml -exec bash -c 'updatePom "$0" .' '{}' \; |