From 15129e0f4f0c0d50dabacc51c47d965b8745c632 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 21 Oct 2024 11:54:25 +0200 Subject: [PATCH 1/3] Fixup checkstyle Upgraded checkstyle is finding day-0 violations, fix them up. Change-Id: Id27a9afa5a04e082d0c4049ad9eaf8751196951e Signed-off-by: Robert Varga --- .../jsonrpc/bus/api/BusSessionFactory.java | 3 +- .../bus/bb/example/InsideController.java | 3 +- .../bus/bb/example/OutsideController.java | 3 +- .../bus/jsonrpc/JsonRpcErrorMessage.java | 3 +- .../CompatibilitySerializationTest.java | 16 +++------ .../bus/messagelib/ProxyServiceImpl.java | 2 +- .../TcclBusSessionFactoryProvider.java | 3 +- .../jsonrpc/bus/messagelib/package-info.java | 33 +++++++------------ .../opendaylight/jsonrpc/bus/zmq/Command.java | 4 +-- .../jsonrpc/bus/zmq/Mechanism.java | 10 ++---- .../opendaylight/jsonrpc/bus/zmq/Message.java | 4 +-- .../jsonrpc/bus/zmq/ServerIndication.java | 10 ++---- .../jsonrpc/bus/zmq/Signature.java | 4 +-- .../opendaylight/jsonrpc/bus/zmq/Util.java | 3 +- .../bus/zmq/interop/JavaPubPythonSub.java | 4 +-- .../bus/zmq/interop/JavaReqPythonRep.java | 4 +-- .../bus/zmq/interop/PythonPubJavaSub.java | 4 +-- .../bus/zmq/interop/PythonReqJavaRep.java | 4 +-- .../cluster/impl/ProxyDOMDataBroker.java | 3 +- .../cluster/impl/ProxyDOMRpcService.java | 3 +- .../cluster/impl/RemotePeerActor.java | 3 +- .../cluster/messages/SchemaPathMsg.java | 3 +- .../cluster/tx/ActorProxyTransaction.java | 3 +- .../provider/cluster/tx/TransactionActor.java | 3 +- .../jsonrpc/hmap/package-info.java | 3 +- .../jsonrpc/model/RemoteOmShard.java | 3 +- .../provider/common/JsonRPCTE2ETest.java | 3 +- 27 files changed, 44 insertions(+), 100 deletions(-) diff --git a/bus/api/src/main/java/org/opendaylight/jsonrpc/bus/api/BusSessionFactory.java b/bus/api/src/main/java/org/opendaylight/jsonrpc/bus/api/BusSessionFactory.java index 2c3e860c..b8efb1df 100644 --- a/bus/api/src/main/java/org/opendaylight/jsonrpc/bus/api/BusSessionFactory.java +++ b/bus/api/src/main/java/org/opendaylight/jsonrpc/bus/api/BusSessionFactory.java @@ -12,8 +12,7 @@ package org.opendaylight.jsonrpc.bus.api; * This factory is used to create different kinds of sessions for a given bus. * This interface needs to be implemented by various bus implementations. * - *

- * Use {@link #close()} to close the underlying bus. + *

Use {@link #close()} to close the underlying bus. *

*
publisher
*
To send/publish messages only
diff --git a/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/InsideController.java b/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/InsideController.java index 907e3d97..f4148729 100644 --- a/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/InsideController.java +++ b/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/InsideController.java @@ -33,8 +33,7 @@ import org.opendaylight.yangtools.yang.common.RpcResultBuilder; *
  • Expose self to jsonrpc bus
  • * * - *

    - * This provider is meant to be running inside ODL controller. + *

    This provider is meant to be running inside ODL controller. * * @author Richard Kosegi * @since Sep 24, 2018 diff --git a/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/OutsideController.java b/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/OutsideController.java index 022fc8ae..94e52d63 100644 --- a/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/OutsideController.java +++ b/bus/examples/binding-bridge/src/main/java/org/opendaylight/jsonrpc/bus/bb/example/OutsideController.java @@ -30,8 +30,7 @@ import org.opendaylight.yangtools.yang.common.RpcResultBuilder; *

  • Expose self to jsonrpc bus
  • * * - *

    - * This provider is meant to be running outside of ODL controller, like microservice. + *

    This provider is meant to be running outside of ODL controller, like microservice. * * @author Richard Kosegi * @since Sep 24, 2018 diff --git a/bus/jsonrpc/src/main/java/org/opendaylight/jsonrpc/bus/jsonrpc/JsonRpcErrorMessage.java b/bus/jsonrpc/src/main/java/org/opendaylight/jsonrpc/bus/jsonrpc/JsonRpcErrorMessage.java index d8986556..185fdf40 100644 --- a/bus/jsonrpc/src/main/java/org/opendaylight/jsonrpc/bus/jsonrpc/JsonRpcErrorMessage.java +++ b/bus/jsonrpc/src/main/java/org/opendaylight/jsonrpc/bus/jsonrpc/JsonRpcErrorMessage.java @@ -18,8 +18,7 @@ import org.eclipse.jdt.annotation.Nullable; * {@link org.opendaylight.jsonrpc.bus.jsonrpc.JsonRpcReplyMessage * JsonRpcReplyMessage} containing the error details. * - *

    - * See message definition + *

    See message definition * * @author Shaleen Saxena */ diff --git a/bus/jsonrpc/src/test/java/org/opendaylight/jsonrpc/bus/jsonrpc/CompatibilitySerializationTest.java b/bus/jsonrpc/src/test/java/org/opendaylight/jsonrpc/bus/jsonrpc/CompatibilitySerializationTest.java index 52b279fc..9de14963 100644 --- a/bus/jsonrpc/src/test/java/org/opendaylight/jsonrpc/bus/jsonrpc/CompatibilitySerializationTest.java +++ b/bus/jsonrpc/src/test/java/org/opendaylight/jsonrpc/bus/jsonrpc/CompatibilitySerializationTest.java @@ -22,8 +22,7 @@ import org.junit.Test; * Test some compatibility-related scenarios. There are 2 possible forms of serialization format. Consider following * java code: * - *

    - * + *

    * public class ModuleInfo { * String name; * String revision; @@ -32,24 +31,17 @@ import org.junit.Test; * public List<ModuleInfo> getModules() { ... } * * - *

    - * These JSONRPC responses should be considered same with regards to resulting object: - * - *

    + *

    These JSONRPC responses should be considered same with regards to resulting object: * * { "jsonrpc" : "2.0", "id" : 1, "result" : [{"name":"abc", "revision":"2020-02-29"}] } * * - *

    - * and - * - *

    + *

    and * * { "jsonrpc" : "2.0", "id" : 1, "result" : { "modules" : [{"name":"abc", "revision":"2020-02-29"}] } } * * - *

    - * Same rules applies for JSONRPC parameters element. + *

    Same rules applies for JSONRPC parameters element. * * @author Richard Kosegi * @since Feb 29, 2020 diff --git a/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/ProxyServiceImpl.java b/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/ProxyServiceImpl.java index feae5d0f..c36e1fe4 100644 --- a/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/ProxyServiceImpl.java +++ b/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/ProxyServiceImpl.java @@ -100,7 +100,7 @@ public class ProxyServiceImpl implements ProxyService { * {"jsonrpc":"2.0","id":1,"method":"methodX","params":[{"property":"value"}]} * * - *

    this should be + *

    this should be * * {"jsonrpc":"2.0","id":1,"method":"methodX","params":{"property":"value"}} * diff --git a/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/TcclBusSessionFactoryProvider.java b/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/TcclBusSessionFactoryProvider.java index b6c37adf..be1c103e 100644 --- a/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/TcclBusSessionFactoryProvider.java +++ b/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/TcclBusSessionFactoryProvider.java @@ -17,8 +17,7 @@ import org.opendaylight.jsonrpc.bus.api.BusSessionFactoryProvider; * {@link ClassLoader}, used in non-OSGi environments. Proper function of this * factory provider requires Java's {@link ServiceLoader} facility. * - *

    - * For more info about TCCL, see + *

    For more info about TCCL, see * {@link Thread#setContextClassLoader(ClassLoader)} * * @author Richard Kosegi diff --git a/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/package-info.java b/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/package-info.java index 0b8c6ca5..ec8b155e 100644 --- a/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/package-info.java +++ b/bus/messagelib/src/main/java/org/opendaylight/jsonrpc/bus/messagelib/package-info.java @@ -10,8 +10,7 @@ * This package contains public API that can be used to create instances of * various session types and proxy objects. * - *

    - * Requester proxy - send request to remote responder instance + *

    Requester proxy - send request to remote responder instance * and read response back. To create requester proxy, follow these steps: *

      *
    1. create responder (on remote peer) by providing implementation of known @@ -35,8 +34,7 @@ * } * * - *

      - * step 1 (remote peer) + *

      step 1 (remote peer) * *

        * TransportFactory tf = ...
      @@ -45,8 +43,7 @@
        *
        * 
      * - *

      - * step 2 (local peer) + *

      step 2 (local peer) * *

        *
      @@ -55,24 +52,21 @@
        *
        * 
      * - *

      - * step 3 (local peer) + *

      step 3 (local peer) * *

        * int x = svc.method1(1, "ABC"); // return value assigned to x is 10 (see
        *                                // implementation above)
        * 
      * - *

      - * This will result in following communication on bus: + *

      This will result in following communication on bus: * *

        * > { "id" : 1, "jsonrpc" : "2.0", "method" : "method1", params: [1, "ABC"] }
        * < { "id" : 1, "jsonrpc" : "2.0", "result" : 10 }
        * 
      * - *

      - * Publisher proxy - send notification to all channels + *

      Publisher proxy - send notification to all channels * subscribed on remote publisher instance. To create publisher proxy instance, * follow these steps: *

        @@ -81,8 +75,7 @@ *
      1. invoke notification method on publisher proxy (provided interface)
      2. *
      * - *

      - * Example of API: + *

      Example of API: * *

        * interface SomeAPI {
      @@ -97,8 +90,7 @@
        * }
        * 
      * - *

      - * step 1 - local peer + *

      step 1 - local peer * *

        * TransportFactory tf = ...
      @@ -106,23 +98,20 @@
        * SomeAPI proxy = tf.createPublisherProxy(SomeAPI.class, "ws://192.168.1.12:12345");
        * 
      * - *

      - * step 2 - (multiple) remote peers + *

      step 2 - (multiple) remote peers * *

        * TransportFactory tf = ...
        * SomeSubscriber session = tf.createSubscriber("ws://192.168.1.12:12345", new SomeSubscriber());
        * 
      * - *

      - * step 3 - local peer + *

      step 3 - local peer * *

        * proxy.notification_method1("ABC")
        * 
      * - *

      - * This will send notification to all connected subscribers: + *

      This will send notification to all connected subscribers: *

        * { "jsonrpc" : "2.0", "method" : "notification_method1", params: ["ABC"] }
        * 
      diff --git a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Command.java b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Command.java index d932fd0e..f8e1f0f3 100644 --- a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Command.java +++ b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Command.java @@ -14,9 +14,7 @@ package org.opendaylight.jsonrpc.bus.zmq; *

      * ABNF grammar: * - *

      - * - *

      + * 

        * ;   A command is a single long or short frame
        * command = command-size command-body
        * command-size = %x04 short-size | %x06 long-size
      diff --git a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Mechanism.java b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Mechanism.java
      index dfeba611..5399c1da 100644
      --- a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Mechanism.java
      +++ b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Mechanism.java
      @@ -14,16 +14,12 @@ import java.nio.charset.StandardCharsets;
       /**
        * Security mechanism.
        *
      - * 

      - * For details, check + *

      For details, check * specification. * - *

      - * ABNF grammar: + *

      ABNF grammar: * - *

      - * - *

      + * 

        * ;   The mechanism is a null padded string
        * mechanism = 20mechanism-char
        * mechanism-char = "A"-"Z" | DIGIT
      diff --git a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Message.java b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Message.java
      index 68afd9c7..4781fe85 100644
      --- a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Message.java
      +++ b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Message.java
      @@ -14,9 +14,7 @@ package org.opendaylight.jsonrpc.bus.zmq;
        * 

      * ABNF grammar: * - *

      - * - *

      + * 

        * ;   A message is one or more frames
        * message = *message-more message-last
        * message-more = ( %x01 short-size | %x03 long-size ) message-body
      diff --git a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/ServerIndication.java b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/ServerIndication.java
      index fba3bba7..f858d059 100644
      --- a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/ServerIndication.java
      +++ b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/ServerIndication.java
      @@ -13,16 +13,12 @@ import io.netty.buffer.Unpooled;
       /**
        * Combination of "as-server" and "filler" fields.
        *
      - * 

      - * For details, check + *

      For details, check * specification. * - *

      - * ABNF grammar: + *

      ABNF grammar: * - *

      - * - *

      + * 

        * ;   Is the peer acting as server?
        * as-server = %x00 | %x01
        *
      diff --git a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Signature.java b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Signature.java
      index 69f6a749..f19c2b4b 100644
      --- a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Signature.java
      +++ b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Signature.java
      @@ -17,9 +17,7 @@ import io.netty.buffer.Unpooled;
        * 

      * ABNF grammar: * - *

      - * - *

      + * 

        * signature = %xFF padding %x7F
        * padding = 8OCTET        ; Not significant
        * 
      diff --git a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Util.java b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Util.java index ce0b876c..2dddad44 100644 --- a/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Util.java +++ b/bus/transport-zmq/src/main/java/org/opendaylight/jsonrpc/bus/zmq/Util.java @@ -24,8 +24,7 @@ final class Util { /** * Mapping for allowed socket types. * - *

      - * See "The Socket-Type Property" in + *

      See "The Socket-Type Property" in * specification for * details. */ diff --git a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaPubPythonSub.java b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaPubPythonSub.java index 1ca79472..f4d2885a 100644 --- a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaPubPythonSub.java +++ b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaPubPythonSub.java @@ -16,9 +16,7 @@ import org.opendaylight.jsonrpc.bus.api.Publisher; * Publisher in Java, subscriber in Python. Publisher simply emits "ABCD" * message couple of times and then goes down. * - *

      - * Python code - * + *

      Python code *

        * import sys
        * import zmq
      diff --git a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaReqPythonRep.java b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaReqPythonRep.java
      index 31e7ac60..01a693ed 100644
      --- a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaReqPythonRep.java
      +++ b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/JavaReqPythonRep.java
      @@ -21,9 +21,7 @@ import org.opendaylight.jsonrpc.bus.api.Requester;
        * Requester in java, responder in Python. Python code just reverse inbound
        * message and send it back.
        *
      - * 

      - * Python code - * + *

      Python code *

        * import zmq
        * import time
      diff --git a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonPubJavaSub.java b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonPubJavaSub.java
      index 82a53f6d..41bc73e1 100644
      --- a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonPubJavaSub.java
      +++ b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonPubJavaSub.java
      @@ -20,9 +20,7 @@ import org.slf4j.LoggerFactory;
        * Publisher in Python, subscriber in Java. Publisher simply emits "ABCD"
        * message in loop with some delay.
        *
      - * 

      - * Python code - * + *

      Python code *

        * import zmq
        * import time
      diff --git a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonReqJavaRep.java b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonReqJavaRep.java
      index 5de2988c..a66aa8cd 100644
      --- a/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonReqJavaRep.java
      +++ b/bus/transport-zmq/src/test/java/org/opendaylight/jsonrpc/bus/zmq/interop/PythonReqJavaRep.java
      @@ -18,9 +18,7 @@ import org.opendaylight.jsonrpc.bus.api.Responder;
        * Requester in Python, responder in Java. Java code just reverse message and
        * send it back.
        *
      - * 

      - * Python code - * + *

      Python code *

        * import zmq
        * import time
      diff --git a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMDataBroker.java b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMDataBroker.java
      index b0ddcdde..1a88531e 100644
      --- a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMDataBroker.java
      +++ b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMDataBroker.java
      @@ -33,8 +33,7 @@ import scala.concurrent.duration.Duration;
       /**
        * Implementation of {@link DOMDataBroker} that forward all requests to actor on master node.
        *
      - * 

      - * Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. + *

      Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. * * @author Richard Kosegi * @since Jul 11, 2020 diff --git a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMRpcService.java b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMRpcService.java index 18408749..94623b71 100644 --- a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMRpcService.java +++ b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/ProxyDOMRpcService.java @@ -44,8 +44,7 @@ import scala.concurrent.duration.Duration; /** * {@link DOMRpcService} implementation that forwards RPC invocation requests to master actor in cluster. * - *

      - * Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. + *

      Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. * * @author Richard Kosegi * @since Jul 7, 2020 diff --git a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/RemotePeerActor.java b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/RemotePeerActor.java index cbec2234..17ff6087 100644 --- a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/RemotePeerActor.java +++ b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/impl/RemotePeerActor.java @@ -48,8 +48,7 @@ import scala.concurrent.duration.Duration; /** * Actor that handles both slave and master-originated messages. * - *

      - * Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. + *

      Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. * * @author Richard Kosegi * @since Jul 13, 2020 diff --git a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/messages/SchemaPathMsg.java b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/messages/SchemaPathMsg.java index 35352d56..04813b5e 100644 --- a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/messages/SchemaPathMsg.java +++ b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/messages/SchemaPathMsg.java @@ -21,8 +21,7 @@ import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absol /** * Message that conveys {@link Absolute}. * - *

      - * Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. + *

      Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. * * @since Jul 14, 2020 */ diff --git a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/ActorProxyTransaction.java b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/ActorProxyTransaction.java index 4a2c18a1..d7a550dd 100644 --- a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/ActorProxyTransaction.java +++ b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/ActorProxyTransaction.java @@ -31,8 +31,7 @@ import scala.concurrent.ExecutionContext; /** * Implementation of {@link DOMDataTreeReadWriteTransaction} that interacts with an actor. * - *

      - * Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. + *

      Acknowledgement : this code is inspired by implementation of netconf-topology-singleton. * * @author Richard Kosegi * @since Jul 11, 2020 diff --git a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/TransactionActor.java b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/TransactionActor.java index 1b9d43e5..f52cc0f9 100644 --- a/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/TransactionActor.java +++ b/provider/cluster/src/main/java/org/opendaylight/jsonrpc/provider/cluster/tx/TransactionActor.java @@ -30,8 +30,7 @@ import scala.concurrent.duration.Duration; /** * Actor to interact with Peer's {@link DOMDataBroker}. * - *

      - * Acknowledgement : this code is inspired by netconf-topology-singleton implementation. + *

      Acknowledgement : this code is inspired by netconf-topology-singleton implementation. * * @author Richard Kosegi * @since Jul 12, 2020 diff --git a/provider/common/src/main/java/org/opendaylight/jsonrpc/hmap/package-info.java b/provider/common/src/main/java/org/opendaylight/jsonrpc/hmap/package-info.java index 5679076d..5b7b3dd2 100644 --- a/provider/common/src/main/java/org/opendaylight/jsonrpc/hmap/package-info.java +++ b/provider/common/src/main/java/org/opendaylight/jsonrpc/hmap/package-info.java @@ -11,8 +11,7 @@ * which can associate vector values to any given data node specified by path * within tree. * - *

      - * Data are associated into {@link org.opendaylight.jsonrpc.hmap.EnumTreeNode}, + *

      Data are associated into {@link org.opendaylight.jsonrpc.hmap.EnumTreeNode}, * which represents point within data tree. * * {@link org.opendaylight.jsonrpc.hmap.PathCodec} is bi-directional API to diff --git a/provider/common/src/main/java/org/opendaylight/jsonrpc/model/RemoteOmShard.java b/provider/common/src/main/java/org/opendaylight/jsonrpc/model/RemoteOmShard.java index 83255f3c..26e491e6 100644 --- a/provider/common/src/main/java/org/opendaylight/jsonrpc/model/RemoteOmShard.java +++ b/provider/common/src/main/java/org/opendaylight/jsonrpc/model/RemoteOmShard.java @@ -14,8 +14,7 @@ import java.util.List; /** * DOM data broker operations. * - *

      - * Documented at wiki + *

      Documented at wiki */ public interface RemoteOmShard extends AutoCloseable { /** diff --git a/provider/common/src/test/java/org/opendaylight/jsonrpc/provider/common/JsonRPCTE2ETest.java b/provider/common/src/test/java/org/opendaylight/jsonrpc/provider/common/JsonRPCTE2ETest.java index a38ee35b..7ce8aba6 100644 --- a/provider/common/src/test/java/org/opendaylight/jsonrpc/provider/common/JsonRPCTE2ETest.java +++ b/provider/common/src/test/java/org/opendaylight/jsonrpc/provider/common/JsonRPCTE2ETest.java @@ -55,8 +55,7 @@ import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; /** * End-to-end test connecting {@link JsonRPCDataBroker}, {@link JsonRPCTx} and {@link RemoteOmShard}. * - *

      - * Goal is to make sure that behavior of {@link JsonRPCDataBroker} is consistent with {@link DOMDataBroker} + *

      Goal is to make sure that behavior of {@link JsonRPCDataBroker} is consistent with {@link DOMDataBroker} * * @author Richard Kosegi */ -- 2.43.0 From 1a27e6c17a7e81095f178d91b73beef86cd93fac Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 21 Oct 2024 11:47:28 +0200 Subject: [PATCH 2/3] WIP: Bump upstreams Adopt: - odlparent-14.0.4 - infrautils-7.0.4 - yangtools-14.0.5 - mdsal-14.0.3 - controller-10.0.3 - aaa-0.20.2 - netconf-8.0.3-SNAPSHOT Change-Id: I968e455d3e1708a16994c711c759d940ddbb6fe9 Signed-off-by: Robert Varga --- artifacts/pom.xml | 2 +- bus/config/pom.xml | 2 +- features/features-jsonrpc/pom.xml | 2 +- features/odl-jsonrpc-all/pom.xml | 2 +- features/odl-jsonrpc-bus/pom.xml | 2 +- features/odl-jsonrpc-cluster/pom.xml | 2 +- features/odl-jsonrpc-provider/pom.xml | 2 +- features/pom.xml | 2 +- karaf/pom.xml | 2 +- parent/pom.xml | 6 +++--- pom.xml | 2 +- provider/cluster/pom.xml | 2 +- provider/common/pom.xml | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/artifacts/pom.xml b/artifacts/pom.xml index 14d3a857..254234c4 100644 --- a/artifacts/pom.xml +++ b/artifacts/pom.xml @@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent odlparent-lite - 14.0.3 + 14.0.4 org.opendaylight.jsonrpc diff --git a/bus/config/pom.xml b/bus/config/pom.xml index 619e0988..55be68c9 100644 --- a/bus/config/pom.xml +++ b/bus/config/pom.xml @@ -11,7 +11,7 @@ org.opendaylight.odlparent bundle-parent - 14.0.3 + 14.0.4 diff --git a/features/features-jsonrpc/pom.xml b/features/features-jsonrpc/pom.xml index 659657db..09ed59f5 100644 --- a/features/features-jsonrpc/pom.xml +++ b/features/features-jsonrpc/pom.xml @@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent feature-repo-parent - 14.0.3 + 14.0.4 diff --git a/features/odl-jsonrpc-all/pom.xml b/features/odl-jsonrpc-all/pom.xml index b60bc40d..ab587b58 100644 --- a/features/odl-jsonrpc-all/pom.xml +++ b/features/odl-jsonrpc-all/pom.xml @@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent single-feature-parent - 14.0.3 + 14.0.4 diff --git a/features/odl-jsonrpc-bus/pom.xml b/features/odl-jsonrpc-bus/pom.xml index 5ecfd4a7..8175e363 100644 --- a/features/odl-jsonrpc-bus/pom.xml +++ b/features/odl-jsonrpc-bus/pom.xml @@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent single-feature-parent - 14.0.3 + 14.0.4 diff --git a/features/odl-jsonrpc-cluster/pom.xml b/features/odl-jsonrpc-cluster/pom.xml index 1d7a6a8e..9d2f83cd 100644 --- a/features/odl-jsonrpc-cluster/pom.xml +++ b/features/odl-jsonrpc-cluster/pom.xml @@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent single-feature-parent - 14.0.3 + 14.0.4 diff --git a/features/odl-jsonrpc-provider/pom.xml b/features/odl-jsonrpc-provider/pom.xml index 79f703a6..13f33ba0 100644 --- a/features/odl-jsonrpc-provider/pom.xml +++ b/features/odl-jsonrpc-provider/pom.xml @@ -13,7 +13,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent single-feature-parent - 14.0.3 + 14.0.4 diff --git a/features/pom.xml b/features/pom.xml index b8331e4b..4cd2c361 100644 --- a/features/pom.xml +++ b/features/pom.xml @@ -11,7 +11,7 @@ org.opendaylight.odlparent odlparent-lite - 14.0.3 + 14.0.4 org.opendaylight.jsonrpc diff --git a/karaf/pom.xml b/karaf/pom.xml index 93dbfe21..7cef3d42 100644 --- a/karaf/pom.xml +++ b/karaf/pom.xml @@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent karaf4-parent - 14.0.3 + 14.0.4 org.opendaylight.jsonrpc diff --git a/parent/pom.xml b/parent/pom.xml index 69170cd8..ad5f59ae 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -11,7 +11,7 @@ org.opendaylight.mdsal binding-parent - 14.0.2 + 14.0.3 @@ -34,14 +34,14 @@ org.opendaylight.netconf netconf-artifacts - 8.0.2 + 8.0.3-SNAPSHOT pom import org.opendaylight.aaa aaa-artifacts - 0.20.1 + 0.20.2 pom import diff --git a/pom.xml b/pom.xml index a5adc7dd..bdf50499 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.odlparent odlparent-lite - 14.0.3 + 14.0.4 org.opendaylight.jsonrpc diff --git a/provider/cluster/pom.xml b/provider/cluster/pom.xml index 690e4c8e..306b7356 100644 --- a/provider/cluster/pom.xml +++ b/provider/cluster/pom.xml @@ -25,7 +25,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.controller bundle-parent - 10.0.2 + 10.0.3 pom import diff --git a/provider/common/pom.xml b/provider/common/pom.xml index a174a0d1..24ffb1ce 100644 --- a/provider/common/pom.xml +++ b/provider/common/pom.xml @@ -24,7 +24,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.mdsal bnd-parent - 14.0.2 + 14.0.3 pom import -- 2.43.0 From 567c92a5822db5186accf11b6b246df878a62b2b Mon Sep 17 00:00:00 2001 From: jenkins-releng Date: Mon, 21 Oct 2024 10:46:10 +0000 Subject: [PATCH 3/3] Release Validate --- api/pom.xml | 2 +- artifacts/pom.xml | 2 +- binding-adapter/pom.xml | 2 +- bus/api/pom.xml | 2 +- bus/config/pom.xml | 2 +- bus/examples/binding-bridge/pom.xml | 2 +- bus/examples/inband-models/pom.xml | 2 +- bus/examples/pom.xml | 2 +- bus/jsonrpc/pom.xml | 2 +- bus/messagelib/pom.xml | 2 +- bus/pom.xml | 2 +- bus/spi/pom.xml | 2 +- bus/transport-http/pom.xml | 2 +- bus/transport-zmq/pom.xml | 2 +- dom-codec/pom.xml | 2 +- features/features-jsonrpc/pom.xml | 2 +- features/odl-jsonrpc-all/pom.xml | 2 +- features/odl-jsonrpc-bus/pom.xml | 2 +- features/odl-jsonrpc-cluster/pom.xml | 2 +- features/odl-jsonrpc-provider/pom.xml | 2 +- features/pom.xml | 2 +- karaf/pom.xml | 2 +- parent/pom.xml | 4 ++-- pom.xml | 2 +- provider/cluster/pom.xml | 2 +- provider/common/pom.xml | 2 +- provider/pom.xml | 2 +- provider/single/pom.xml | 2 +- security/aaa/pom.xml | 2 +- security/api/pom.xml | 2 +- security/noop/pom.xml | 2 +- security/pom.xml | 2 +- security/service/pom.xml | 2 +- test-model/pom.xml | 2 +- tools/parent/pom.xml | 2 +- tools/pom.xml | 2 +- tools/test-tool/pom.xml | 2 +- 37 files changed, 38 insertions(+), 38 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 8d21575b..7aa98725 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../parent jsonrpc-api diff --git a/artifacts/pom.xml b/artifacts/pom.xml index 254234c4..85548f82 100644 --- a/artifacts/pom.xml +++ b/artifacts/pom.xml @@ -16,7 +16,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-artifacts - 1.17.1-SNAPSHOT + 1.17.1 pom JSON-RPC :: Artifacts diff --git a/binding-adapter/pom.xml b/binding-adapter/pom.xml index 54e7afa6..dc762fe4 100644 --- a/binding-adapter/pom.xml +++ b/binding-adapter/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../parent diff --git a/bus/api/pom.xml b/bus/api/pom.xml index ef31940f..364ffb20 100644 --- a/bus/api/pom.xml +++ b/bus/api/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.bus diff --git a/bus/config/pom.xml b/bus/config/pom.xml index 55be68c9..279ab9d9 100644 --- a/bus/config/pom.xml +++ b/bus/config/pom.xml @@ -17,7 +17,7 @@ org.opendaylight.jsonrpc.bus bus-config - 1.17.1-SNAPSHOT + 1.17.1 JSON-RPC :: BUS :: Config Configuration files for JSONRPC bus jar diff --git a/bus/examples/binding-bridge/pom.xml b/bus/examples/binding-bridge/pom.xml index ccbddea8..8ec70f6f 100644 --- a/bus/examples/binding-bridge/pom.xml +++ b/bus/examples/binding-bridge/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../../parent org.opendaylight.jsonrpc.bus diff --git a/bus/examples/inband-models/pom.xml b/bus/examples/inband-models/pom.xml index 079fc5d6..eb0318a4 100644 --- a/bus/examples/inband-models/pom.xml +++ b/bus/examples/inband-models/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../../parent inband-models diff --git a/bus/examples/pom.xml b/bus/examples/pom.xml index 28d1c559..37c02174 100644 --- a/bus/examples/pom.xml +++ b/bus/examples/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-bus - 1.17.1-SNAPSHOT + 1.17.1 org.opendaylight.jsonrpc.bus examples diff --git a/bus/jsonrpc/pom.xml b/bus/jsonrpc/pom.xml index 87550883..eb05be7e 100644 --- a/bus/jsonrpc/pom.xml +++ b/bus/jsonrpc/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.bus diff --git a/bus/messagelib/pom.xml b/bus/messagelib/pom.xml index b8aef984..2a27bcc3 100644 --- a/bus/messagelib/pom.xml +++ b/bus/messagelib/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.bus diff --git a/bus/pom.xml b/bus/pom.xml index ea42b168..23a37e3c 100644 --- a/bus/pom.xml +++ b/bus/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc - 1.17.1-SNAPSHOT + 1.17.1 jsonrpc-bus pom diff --git a/bus/spi/pom.xml b/bus/spi/pom.xml index 2ddd2487..0861b79f 100644 --- a/bus/spi/pom.xml +++ b/bus/spi/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.bus diff --git a/bus/transport-http/pom.xml b/bus/transport-http/pom.xml index 01f42297..bd4f5413 100644 --- a/bus/transport-http/pom.xml +++ b/bus/transport-http/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.bus diff --git a/bus/transport-zmq/pom.xml b/bus/transport-zmq/pom.xml index 2c956b35..8daaa333 100644 --- a/bus/transport-zmq/pom.xml +++ b/bus/transport-zmq/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.bus diff --git a/dom-codec/pom.xml b/dom-codec/pom.xml index 8ac071d5..3fc2853f 100644 --- a/dom-codec/pom.xml +++ b/dom-codec/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../parent diff --git a/features/features-jsonrpc/pom.xml b/features/features-jsonrpc/pom.xml index 09ed59f5..df610065 100644 --- a/features/features-jsonrpc/pom.xml +++ b/features/features-jsonrpc/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc features-jsonrpc - 1.17.1-SNAPSHOT + 1.17.1 feature JSON-RPC :: Features :: repository diff --git a/features/odl-jsonrpc-all/pom.xml b/features/odl-jsonrpc-all/pom.xml index ab587b58..49ff2280 100644 --- a/features/odl-jsonrpc-all/pom.xml +++ b/features/odl-jsonrpc-all/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc odl-jsonrpc-all - 1.17.1-SNAPSHOT + 1.17.1 feature JSON-RPC :: Feature :: all diff --git a/features/odl-jsonrpc-bus/pom.xml b/features/odl-jsonrpc-bus/pom.xml index 8175e363..666bd2f3 100644 --- a/features/odl-jsonrpc-bus/pom.xml +++ b/features/odl-jsonrpc-bus/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc odl-jsonrpc-bus - 1.17.1-SNAPSHOT + 1.17.1 feature JSON-RPC :: Feature :: bus diff --git a/features/odl-jsonrpc-cluster/pom.xml b/features/odl-jsonrpc-cluster/pom.xml index 9d2f83cd..3ed8e30d 100644 --- a/features/odl-jsonrpc-cluster/pom.xml +++ b/features/odl-jsonrpc-cluster/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc odl-jsonrpc-cluster - 1.17.1-SNAPSHOT + 1.17.1 feature JSON-RPC :: Feature :: Cluster diff --git a/features/odl-jsonrpc-provider/pom.xml b/features/odl-jsonrpc-provider/pom.xml index 13f33ba0..4b990554 100644 --- a/features/odl-jsonrpc-provider/pom.xml +++ b/features/odl-jsonrpc-provider/pom.xml @@ -19,7 +19,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc odl-jsonrpc-provider - 1.17.1-SNAPSHOT + 1.17.1 feature JSON-RPC :: Feature :: provider diff --git a/features/pom.xml b/features/pom.xml index 4cd2c361..50597272 100644 --- a/features/pom.xml +++ b/features/pom.xml @@ -16,7 +16,7 @@ org.opendaylight.jsonrpc features-aggregator - 1.17.1-SNAPSHOT + 1.17.1 pom JSON-RPC :: Features :: Aggregator diff --git a/karaf/pom.xml b/karaf/pom.xml index 7cef3d42..d3d3f7d9 100644 --- a/karaf/pom.xml +++ b/karaf/pom.xml @@ -16,7 +16,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-karaf - 1.17.1-SNAPSHOT + 1.17.1 JSON-RPC :: Karaf pom diff --git a/parent/pom.xml b/parent/pom.xml index ad5f59ae..d19976c8 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -18,7 +18,7 @@ 4.0.0 org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 pom JSON-RPC :: Parent @@ -34,7 +34,7 @@ org.opendaylight.netconf netconf-artifacts - 8.0.3-SNAPSHOT + 8.0.3 pom import diff --git a/pom.xml b/pom.xml index bdf50499..c18a2e4c 100644 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc - 1.17.1-SNAPSHOT + 1.17.1 pom JSON-RPC :: POM diff --git a/provider/cluster/pom.xml b/provider/cluster/pom.xml index 306b7356..7caf744a 100644 --- a/provider/cluster/pom.xml +++ b/provider/cluster/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-provider - 1.17.1-SNAPSHOT + 1.17.1 .. diff --git a/provider/common/pom.xml b/provider/common/pom.xml index 24ffb1ce..6d13d100 100644 --- a/provider/common/pom.xml +++ b/provider/common/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-provider - 1.17.1-SNAPSHOT + 1.17.1 .. diff --git a/provider/pom.xml b/provider/pom.xml index ef94f37e..58a74ae2 100644 --- a/provider/pom.xml +++ b/provider/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../parent diff --git a/provider/single/pom.xml b/provider/single/pom.xml index 74b1e34a..0a10bfc2 100644 --- a/provider/single/pom.xml +++ b/provider/single/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-provider - 1.17.1-SNAPSHOT + 1.17.1 .. diff --git a/security/aaa/pom.xml b/security/aaa/pom.xml index b832d897..053232f4 100644 --- a/security/aaa/pom.xml +++ b/security/aaa/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.security diff --git a/security/api/pom.xml b/security/api/pom.xml index 22af36b7..a47b2ea4 100644 --- a/security/api/pom.xml +++ b/security/api/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.security diff --git a/security/noop/pom.xml b/security/noop/pom.xml index ff97e52b..ffa5389a 100644 --- a/security/noop/pom.xml +++ b/security/noop/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.security diff --git a/security/pom.xml b/security/pom.xml index 8ef5a939..ce9f1734 100644 --- a/security/pom.xml +++ b/security/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc - 1.17.1-SNAPSHOT + 1.17.1 jsonrpc-security pom diff --git a/security/service/pom.xml b/security/service/pom.xml index 117ba98e..b9b61b8e 100644 --- a/security/service/pom.xml +++ b/security/service/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent org.opendaylight.jsonrpc.security diff --git a/test-model/pom.xml b/test-model/pom.xml index 700f2f85..020a832c 100644 --- a/test-model/pom.xml +++ b/test-model/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../parent jsonrpc-test-model diff --git a/tools/parent/pom.xml b/tools/parent/pom.xml index add97957..4b637540 100644 --- a/tools/parent/pom.xml +++ b/tools/parent/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc-parent - 1.17.1-SNAPSHOT + 1.17.1 ../../parent tools-parent diff --git a/tools/pom.xml b/tools/pom.xml index 16fa2a94..dc8c0c80 100644 --- a/tools/pom.xml +++ b/tools/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc jsonrpc - 1.17.1-SNAPSHOT + 1.17.1 jsonrpc-tools pom diff --git a/tools/test-tool/pom.xml b/tools/test-tool/pom.xml index 7ea4e037..83e6a6f6 100644 --- a/tools/test-tool/pom.xml +++ b/tools/test-tool/pom.xml @@ -12,7 +12,7 @@ and is available at http://www.eclipse.org/legal/epl-v10.html org.opendaylight.jsonrpc tools-parent - 1.17.1-SNAPSHOT + 1.17.1 ../parent test-tool -- 2.43.0