Bump odlparent to 3.0.0-SNAPSHOT and fix breakages 49/64449/30
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 18 Oct 2017 12:30:36 +0000 (14:30 +0200)
committerStephen Kitt <skitt@redhat.com>
Wed, 15 Nov 2017 11:10:49 +0000 (12:10 +0100)
This patch bumps the odlparent version, bringing in changes
in that release. This break checkstyle-logging, which is fixed
here.

Change-Id: Iee8fae0c70c83add3f4e7bade75eb86bf8f4d4bc
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
Signed-off-by: Stephen Kitt <skitt@redhat.com>
67 files changed:
benchmarks/pom.xml
common/artifacts/pom.xml
common/checkstyle-logging/pom.xml
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/AbstractLogMessageCheck.java
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/LogMessageConcatenationCheck.java
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/LoggerDeclarationsCountCheck.java
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/LoggerFactoryClassParameterCheck.java
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/LoggerMustBeSlf4jCheck.java
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/LoggerVariableModifiersCheck.java
common/checkstyle-logging/src/main/java/org/opendaylight/yangtools/checkstyle/LoggerVariableNameCheck.java
common/concepts/pom.xml
common/mockito-configuration/pom.xml
common/object-cache-api/pom.xml
common/object-cache-guava/pom.xml
common/object-cache-noop/pom.xml
common/pom.xml
common/testutils/pom.xml
common/util/pom.xml
features/features-yangtools-experimental/pom.xml
features/features-yangtools/pom.xml
features/odl-exp-objcache/pom.xml
features/odl-triemap/pom.xml
features/odl-yangtools-codec/pom.xml
features/odl-yangtools-common/pom.xml
features/odl-yangtools-data-api/pom.xml
features/odl-yangtools-data/pom.xml
features/odl-yangtools-export/pom.xml
features/odl-yangtools-parser-api/pom.xml
features/odl-yangtools-parser/pom.xml
features/odl-yangtools-util/pom.xml
features/odl-yangtools-xpath/pom.xml
features/pom.xml
pom.xml
third-party/pom.xml
third-party/triemap/pom.xml
yang-validation-tool/pom.xml
yang/odlext-model-api/pom.xml
yang/odlext-parser-support/pom.xml
yang/openconfig-model-api/pom.xml
yang/openconfig-parser-support/pom.xml
yang/pom.xml
yang/rfc7952-model-api/pom.xml
yang/rfc7952-parser-support/pom.xml
yang/rfc8040-model-api/pom.xml
yang/rfc8040-parser-support/pom.xml
yang/yang-common/pom.xml
yang/yang-data-api/pom.xml
yang/yang-data-codec-gson/pom.xml
yang/yang-data-codec-xml/pom.xml
yang/yang-data-impl/pom.xml
yang/yang-data-jaxen/pom.xml
yang/yang-data-transform/pom.xml
yang/yang-data-util/pom.xml
yang/yang-maven-plugin-it/pom.xml
yang/yang-maven-plugin-spi/pom.xml
yang/yang-maven-plugin/pom.xml
yang/yang-model-api/pom.xml
yang/yang-model-export/pom.xml
yang/yang-model-immutable/pom.xml
yang/yang-model-util/pom.xml
yang/yang-model-validator/pom.xml
yang/yang-parser-api/pom.xml
yang/yang-parser-impl/pom.xml
yang/yang-parser-reactor/pom.xml
yang/yang-parser-rfc7950/pom.xml
yang/yang-parser-spi/pom.xml
yang/yang-test-util/pom.xml

index 9691c0d19cd02d38d548d70ca1a5c7204fc69787..7ee7dc372263b0c250867a17658db6e966aa4f44 100644 (file)
@@ -13,7 +13,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
     <modelVersion>4.0.0</modelVersion>
index a6f30490eb4d513cfd4c81ffc64867a910a77506..69f1405277ca5d260ef5b873f43291f088d4cff7 100644 (file)
@@ -13,7 +13,7 @@
     <parent>
       <groupId>org.opendaylight.odlparent</groupId>
       <artifactId>odlparent-lite</artifactId>
-      <version>2.0.5</version>
+      <version>3.0.0-SNAPSHOT</version>
       <relativePath/>
     </parent>
 
index d76cfc78bec1be220e8337cbf04e1c764be52671..cbed1b26fd4b3c85428bddec3e054e5cc20a6757 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
   <groupId>org.opendaylight.yangtools</groupId>
index 4c1d4a1f1167ca495d3464c250ee4db0c1e5bda8..33e6feb5fcfd91d2f9ddd7ef6120fd60ad26b614 100644 (file)
@@ -13,10 +13,21 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
 import java.util.Optional;
 
 public abstract class AbstractLogMessageCheck extends AbstractCheck {
+    private static final int[] TOKENS = { TokenTypes.METHOD_CALL };
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[]{TokenTypes.METHOD_CALL};
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getAcceptableTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getRequiredTokens() {
+        return TOKENS;
     }
 
     @Override
index da8ba1c3448b71a7b08ba0ca844bde561546d3f2..a077ed6f8342c79397217a0c974b3aa95a913b01 100644 (file)
@@ -15,10 +15,21 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
 public class LogMessageConcatenationCheck extends AbstractCheck {
 
     private static final String LOG_MESSAGE = "Log message contains string concatenation.";
+    private static final int[] TOKENS = { TokenTypes.METHOD_CALL };
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[]{TokenTypes.METHOD_CALL};
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getAcceptableTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getRequiredTokens() {
+        return TOKENS;
     }
 
     @Override
index ea0270784b5cad594b7c281bd7d1ed13f488aafe..f16dae6dd93dad466923115b7afd320c7be93b8f 100644 (file)
@@ -17,15 +17,27 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
 public class LoggerDeclarationsCountCheck extends AbstractCheck {
 
     private static final String LOG_MESSAGE = "Logger might be declared only once.";
+    private static final int[] TOKENS = { TokenTypes.VARIABLE_DEF };
+
     private String prevClassName = "";
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[]{TokenTypes.VARIABLE_DEF};
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getAcceptableTokens() {
+        return TOKENS;
     }
 
     @Override
-    public void visitToken(DetailAST ast) {
+    public int[] getRequiredTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public void visitToken(final DetailAST ast) {
         if (CheckLoggingUtil.isLoggerType(ast) && isAFieldVariable(ast)) {
             final String className = CheckLoggingUtil.getClassName(ast);
             if (this.prevClassName.equals(className)) {
@@ -36,9 +48,8 @@ public class LoggerDeclarationsCountCheck extends AbstractCheck {
     }
 
     @Override
-    public void finishTree(DetailAST rootAST) {
+    public void finishTree(final DetailAST rootAST) {
         super.finishTree(rootAST);
         this.prevClassName = "";
     }
-
 }
index e16129ec4e4651a783e83a182e964981bdc469c2..21d4abacbafbeecc6e760a48169c41dd7932eb46 100644 (file)
@@ -17,10 +17,21 @@ public class LoggerFactoryClassParameterCheck extends AbstractCheck {
 
     private static final String LOG_MESSAGE = "LoggerFactory.getLogger Class argument is incorrect.";
     private static final String METHOD_NAME = "LoggerFactory.getLogger";
+    private static final int[] TOKENS = { TokenTypes.METHOD_CALL };
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[] { TokenTypes.METHOD_CALL };
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getAcceptableTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getRequiredTokens() {
+        return TOKENS;
     }
 
     @Override
index 19eadfd109e61995f225a7920ba5b8e991a940ca..71280fbaa78a30e12c77edd84386be8efa7b89ea 100644 (file)
@@ -19,14 +19,25 @@ public class LoggerMustBeSlf4jCheck extends AbstractCheck {
 
     private static final String LOG_MESSAGE = "Logger must be slf4j.";
     private static final String SLF4J = "slf4j";
+    private static final int[] TOKENS = { TokenTypes.VARIABLE_DEF, TokenTypes.IMPORT };
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[]{TokenTypes.VARIABLE_DEF, TokenTypes.IMPORT};
+        return TOKENS;
     }
 
     @Override
-    public void visitToken(DetailAST ast) {
+    public int[] getAcceptableTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getRequiredTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public void visitToken(final DetailAST ast) {
         if (ast.getType() == TokenTypes.VARIABLE_DEF) {
             if (CheckLoggingUtil.isAFieldVariable(ast)) {
                 final String typeName = CheckLoggingUtil.getTypeName(ast);
index 2cd397acc35ad67ecc60de1799feed1747bcef1a..1856a1fe047e2e3935abf295a1c68f1a5dc4ac66 100644 (file)
@@ -15,10 +15,21 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
 public class LoggerVariableModifiersCheck extends AbstractCheck {
 
     private static final String LOG_MESSAGE = "Logger must be declared as private static final.";
+    private static final int[] TOKENS = { TokenTypes.VARIABLE_DEF };
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[]{TokenTypes.VARIABLE_DEF};
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getAcceptableTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getRequiredTokens() {
+        return TOKENS;
     }
 
     @Override
index ffa9d9800f150fba5d7d71915f6f908b48514a6e..5c28ce15c29c0da4401cbaa47c52892a43565d66 100644 (file)
@@ -17,10 +17,21 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
 public class LoggerVariableNameCheck extends AbstractCheck {
 
     private static final String LOG_MESSAGE = "Logger name should be LOG.";
+    private static final int[] TOKENS = { TokenTypes.VARIABLE_DEF };
 
     @Override
     public int[] getDefaultTokens() {
-        return new int[]{TokenTypes.VARIABLE_DEF};
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getAcceptableTokens() {
+        return TOKENS;
+    }
+
+    @Override
+    public int[] getRequiredTokens() {
+        return TOKENS;
     }
 
     @Override
index ea9c90a699bbf1fa6f2935df0338e463b75cf3ea..989ef586e72ff5e9e7331b19bef2257327b1df27 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 6dd559b0ac566e14d694aaa3930302e13d0af745..c232e76d504aaefc8141915bc9174c99aea717b1 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 2405dad95a907cb98bf32aead86a85073ebcd23c..92061236170f452b771c23cf8265ba23ecb61224 100644 (file)
@@ -13,7 +13,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
     <packaging>bundle</packaging>
index 0f7de712ef875c41925d9a7339268644a673d59b..007429c068dfedafae3d5971ae5a7522bb451c63 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 7b0c697a051ebc1bf1b4734132a9c8583f6ccce7..911c3ad9afcca84271e9a30df4e7ed2b327274c0 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
     <packaging>bundle</packaging>
index 08368424c00f45471e0b0b5fc93fd007fa0a9716..8443aef278dc36d945c61e32a6a008c51425d0cc 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
       <groupId>org.opendaylight.odlparent</groupId>
       <artifactId>odlparent-lite</artifactId>
-      <version>2.0.5</version>
+      <version>3.0.0-SNAPSHOT</version>
       <relativePath/>
     </parent>
 
index 5b8d68e76c50d52b76bdbc32ccc10bdec1464bfc..cf5bde7dd0a24e56aaf13c035d5e4efce09dcd3e 100644 (file)
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 3b2b1e4787cc35045147227efa15c40aa0a5868b..5b713de7afc3b047f9dc05f833f6b9cbcdc39f54 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
     <packaging>bundle</packaging>
index df1cc4a5bf44544bd4bb3f4259e86ab549670d1e..4cbbeff208b15e9c4149e0e88409da0b28695254 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>feature-repo-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index ca15103476f49c233c9ba8e2a009ff4a22b970af..af82a41277b12a09511a55bf2a17f9190aa9823a 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>feature-repo-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 8a59ef14c576f51b2a7d29b808d3cd6c7af665ca..aac77a2dbbf74667ac16a0cb47136b6d7532d189 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 8bd5956e3bf3793111e93e5b9a4908698097fd57..26afdd4ba139c6944900fdc06869003295121e82 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
@@ -40,8 +40,8 @@
     <dependencies>
         <dependency>
             <groupId>org.opendaylight.odlparent</groupId>
-            <artifactId>odl-guava-22</artifactId>
-            <version>2.0.5</version>
+            <artifactId>odl-guava-23</artifactId>
+            <version>3.0.0-SNAPSHOT</version>
             <type>xml</type>
             <classifier>features</classifier>
         </dependency>
index 5aaaa6a113bd313a8c3e30df053ddf3abe2a07cd..af52fdd4d30f459fac3632b15e06473a7a190d33 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index cb0ce3fa87a915926353a2b33606d084f5bcc4b9..ea020db78af2c06c6953e8d70de0e1036dff1ea2 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 29e6523310366b43229aa7de30df5031d7eeba2b..26ef2ed21c7b1e55d4c61317ba1dcc96e7b2ea41 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 660ad6728d0078a983800bd75b35443acb85fa6c..f5a2578302491f3002f7cd453de3e764bd0f9890 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 4925ccf88d588db35900e78ee6cab5baa804ffa8..3574f6b092b8976ec7cfa408dde0932d87832ed0 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index e5d3f6d09890ea0fb07b35b9e9b9148810bee202..c51a780f474ea499e0d4452f06a5829c2ca9ae9b 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index e1922b34eea29088ffe2c1c72b71c380447c4c84..d8c2d0989999b393ec9ba8cfdd6146bc94d1bfde 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 640738ea9312b407eb1aa7d11bd0f6dc3a4fd695..8a3ab83f4b7775711f8622d8d6d00083102b406c 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 55a167e0d862cd23f934eb7997db7c1fbf04cb20..a6e007bf8e224c83db86b629df0ac3b0061542d5 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>single-feature-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 3eeff49712a98e842c6ce054d90c0aa86a3a1669..2ec77c9d75cc6ad037c2d214d29b7a1b57dd487e 100644 (file)
@@ -14,7 +14,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
diff --git a/pom.xml b/pom.xml
index 6a57c2da242f1c286ff2d3e5e045982a1738c0b2..eb839e325c4e0e727696e69f7ec22eccb8648988 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -13,7 +13,7 @@
     <parent>
       <groupId>org.opendaylight.odlparent</groupId>
       <artifactId>odlparent-lite</artifactId>
-      <version>2.0.5</version>
+      <version>3.0.0-SNAPSHOT</version>
       <relativePath/>
     </parent>
 
index 20c9b3680ae50d19843f405168f5efce18c93600..372ffb6439d4c257141002ae290dce677fdf7d08 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 2e9cca9ed57f79264940f6087576255902b8d114..3c6b966f6143bce3f84fefd0fb3de5c63096d225 100644 (file)
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index e22fbe65b3421033c31dc1477ce0aeafc5c27874..f95b8236fbfed7cd546503b7425e13a37bcbbd5f 100644 (file)
@@ -13,7 +13,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index e22bfc125ec5e1481443b7dfd780f6f65c43ed9d..cedf94fecc53e63c97c0bd0af4f4686ff60f078b 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 3c0a51c29e9194f9c3d40cfddebd080951828e9f..801c695ef25e8118b137b7e11d514b3b692e8757 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index ab51b43c354013da804853d9edf7ae774f01a4b0..81bd201bb685fda45a3b91b91741e63472deb28d 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 7042be319e7e4ee79f1dcee331d20457e619fa5d..119a6c77dddcb3299f05819ff1f813b7068cc21d 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 806b452c07cc3764ddfbb5e34255f6d48cc0f879..e9e0d025c51085a1b80f66bb07750c817ffbc1b8 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index c00fbe545487fb58d4dcd7263e7cec267af3068a..49cb0db2e044574bd861ecdb5798f670d987c5d0 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index d28f60f8307d59ce2f0d433aec127e3f2420c100..5dd3937a16ea530e4e41140dcfb943894335d9af 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 36777b342f1b7111a5fbbdf24e8d27682ecdc71f..6f1e0b6a2ff1d116bf908bf357063846c1b0db8b 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 6c313916d55bbef7bf4dbefb932679a5b965d19c..5462ecf72020e3547a56b4aa961387a49418155b 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 9e7d058ff74aeab799a14c1b79a3c937ca2684ca..0a2e7d1c339a8de5b72196b1ae36ed2290f59686 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 6345d03aee826a3cf240938cd8303c10d2252399..c4e6fde8063f1fb24c8e19942d58d6e6f74f7db9 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 0586d96264ac90df80980db5d90b7098c4ff8557..9f07508e3162f78951da53c7b7c3deeeb0215808 100644 (file)
@@ -11,7 +11,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index cbf2c42504e46e0aa0ffc0ad23835ab91b4beaa1..307c1b8f00bfb696c6b0695344b14e2fe3ec77c5 100644 (file)
@@ -11,7 +11,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 6c4b0c6b9493400c85afacf7d9747f4b345dd395..f5fbeade5b0b6a8a09ff76afe8d7d9ba53536d88 100644 (file)
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 636d9424be8114f98189bea969b54c6cf3bf519f..6f81770a20a04e8cdee2c2170d1b4721e0f356a3 100644 (file)
@@ -13,7 +13,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index e35d02c0d0d9ad63d4aee97f999f809a840e626b..5b9da19a4ddf65a4d8e288a103ac5836d4878d54 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 5f2fd161d8dd14d1125218d7da89d560a8f8ff77..9100c9bf0a4a511eaf4b713aa874cb3a5f21511c 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 72528d4456f5a351edbe6ebb52a7df0a58efa039..520430adf8c059b1d598501b07add14b88000928 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
             <artifactId>maven-verifier</artifactId>
             <version>1.6</version>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.code.findbugs</groupId>
+                    <!-- Use com.google.code.findbugs:annotations instead of jsr305 -->
+                    <artifactId>jsr305</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>com.google.guava</groupId>
index 20efd10c8e1dd2189ffa0177dd8ba30a87239599..d1a283279ae2b97f61efeb4b8c88fafe8749e098 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index c6a7b087bef4f2d44248caa7af6ef3f9a8570f46..acd6d081d30a6f8116a9cbcc643d0baae942b26a 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 39bce532dc469ecb396e9aeeb534098c4e27de5d..e0ce3f3497ce1f4238f1e8a69efa2d3dde2f10d1 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 3f773b492323c64626c6e0f554fe95f2c6c33b0b..d0192730376b4d7b47bacafe8b238b5b0a5d1214 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 857abe8cc0b1cdf8b68668c6db899cc0bbe11a83..edc2b596d9dc9d7bd6fba53401821e5f112cd879 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 85d43530571f90290b4df7d0a2f7e92ec53bb0de..6b4e1e72ebc75253c6c288e292e26d2a5b48961a 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index eb32c3cd2d5c29c456ad809f78e6fe069a67e7cb..20f84ece0eb2c9c66f7be03b014488b9c175d2f4 100644 (file)
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
index e49c7924d2af032489376902ab4ce2bd8168562d..88643cfd453e8fe679151fab3d76a1fd67a76d4e 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index b62609622fb51d156e1d5922ac8bdefa4b8062b4..6ce01b6741b63a09f3a3d6557241007c04c9075f 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index bfcdd1fc8da9b9515b6b2cb96da5a18074b128c8..494ea3357bf7cc2e828b5b48f175dae72c014d71 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index b9ff68c402171e5f24545500c176ad1d720adaf1..c5535e44cb3752eb9e7f647ae53e4e2d2bf1a150 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 1795d1f10ba7bb7b6794c0d17d6a340472bdf6b3..0e3f3ab83e46b807b4ee8732259b02893106fde6 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
index 792f82ea48b25d8c40e2eeded2a6a9ce262b9b15..c90b0224440e937e92d6d7166320c3e83d6381b7 100644 (file)
@@ -12,7 +12,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>2.0.5</version>
+        <version>3.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>