From 814d71c4d8a0afe47c50ebf2eadbd16d1117e636 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 31 Jan 2024 18:09:02 +0100 Subject: [PATCH] Prepare release 19.2.0 JIRA: LIGHTY-280 Signed-off-by: tobias.pobocik --- README.md | 2 +- .../devices/lighty-actions-device/README.md | 4 ++-- examples/devices/lighty-actions-device/pom.xml | 2 +- .../src/assembly/resources/start-device.sh | 2 +- .../lighty-network-topology-device/README.md | 4 ++-- .../lighty-network-topology-device/pom.xml | 2 +- .../src/assembly/resources/start-device.sh | 2 +- .../lighty-notifications-device/README.md | 6 +++--- .../lighty-notifications-device/pom.xml | 2 +- .../src/assembly/resources/start-device.sh | 2 +- .../devices/lighty-toaster-device/README.md | 6 +++--- examples/devices/lighty-toaster-device/pom.xml | 2 +- .../src/assembly/resources/start-device.sh | 2 +- .../lighty-toaster-multiple-devices/README.md | 2 +- .../lighty-toaster-multiple-devices/pom.xml | 2 +- .../src/assembly/resources/start-device.sh | 2 +- examples/devices/pom.xml | 2 +- .../lighty-example-data-center-model/pom.xml | 2 +- .../pom.xml | 2 +- .../lighty-example-notifications-model/pom.xml | 2 +- examples/models/pom.xml | 2 +- examples/parents/examples-bom/pom.xml | 18 +++++++++--------- examples/parents/examples-parent/pom.xml | 4 ++-- examples/parents/pom.xml | 2 +- examples/pom.xml | 2 +- lighty-netconf-device/pom.xml | 2 +- pom.xml | 2 +- 27 files changed, 42 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index cb32f16a..1326fa8d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ mvn clean install ``` * The NETCONF Device Library build is located at: -`lighty-netconf-device\target\lighty-netconf-device-19.2.0-SNAPSHOT.jar` +`lighty-netconf-device\target\lighty-netconf-device-19.2.0.jar` * The build & run procedures for the example devices are described in each device's README. diff --git a/examples/devices/lighty-actions-device/README.md b/examples/devices/lighty-actions-device/README.md index b067ae63..ed0c0a54 100644 --- a/examples/devices/lighty-actions-device/README.md +++ b/examples/devices/lighty-actions-device/README.md @@ -28,12 +28,12 @@ Build root project - for more details check: [README](../../../README.md) * extract binary distribution in target directory * run jar file from zip with default parameter ``` -java -jar lighty-action-device-19.2.0-SNAPSHOT.jar +java -jar lighty-action-device-19.2.0.jar ``` To run device on specific port, add port number as an argument * run device on specific port `12345` (any available port) ``` -java -jar lighty-action-device-19.2.0-SNAPSHOT.jar 12345 +java -jar lighty-action-device-19.2.0.jar 12345 ``` ### Connect to device via SSH diff --git a/examples/devices/lighty-actions-device/pom.xml b/examples/devices/lighty-actions-device/pom.xml index 60ebf77c..ab1fdc84 100644 --- a/examples/devices/lighty-actions-device/pom.xml +++ b/examples/devices/lighty-actions-device/pom.xml @@ -14,7 +14,7 @@ io.lighty.netconf.device.examples examples-parent - 19.2.0-SNAPSHOT + 19.2.0 ../../parents/examples-parent/pom.xml diff --git a/examples/devices/lighty-actions-device/src/assembly/resources/start-device.sh b/examples/devices/lighty-actions-device/src/assembly/resources/start-device.sh index a78dbed6..ada5a8dd 100644 --- a/examples/devices/lighty-actions-device/src/assembly/resources/start-device.sh +++ b/examples/devices/lighty-actions-device/src/assembly/resources/start-device.sh @@ -6,7 +6,7 @@ # # When run without a parameter a default port 17830 will be used. -CLASSPATH=lighty-action-device-19.2.0-SNAPSHOT.jar +CLASSPATH=lighty-action-device-19.2.0.jar for jar in `ls -1 lib/`; do diff --git a/examples/devices/lighty-network-topology-device/README.md b/examples/devices/lighty-network-topology-device/README.md index 9517246d..90c841a4 100644 --- a/examples/devices/lighty-network-topology-device/README.md +++ b/examples/devices/lighty-network-topology-device/README.md @@ -19,12 +19,12 @@ Build root project - for more details check: [README](../../../README.md) * extract binary distribution in target directory * run jar file from zip with default parameter ``` -java -jar lighty-network-topology-device-19.2.0-SNAPSHOT.jar +java -jar lighty-network-topology-device-19.2.0.jar ``` * to run device on specific port it is necessary to add port number as an argument * run device on specific port `12345` (any available port) ``` -java -jar lighty-network-topology-device-19.2.0-SNAPSHOT.jar 12345 +java -jar lighty-network-topology-device-19.2.0.jar 12345 ``` ### Connect to device via SSH diff --git a/examples/devices/lighty-network-topology-device/pom.xml b/examples/devices/lighty-network-topology-device/pom.xml index 86e32552..f1ee2987 100644 --- a/examples/devices/lighty-network-topology-device/pom.xml +++ b/examples/devices/lighty-network-topology-device/pom.xml @@ -14,7 +14,7 @@ io.lighty.netconf.device.examples examples-parent - 19.2.0-SNAPSHOT + 19.2.0 ../../parents/examples-parent/pom.xml diff --git a/examples/devices/lighty-network-topology-device/src/assembly/resources/start-device.sh b/examples/devices/lighty-network-topology-device/src/assembly/resources/start-device.sh index 21f8f445..82873d1a 100644 --- a/examples/devices/lighty-network-topology-device/src/assembly/resources/start-device.sh +++ b/examples/devices/lighty-network-topology-device/src/assembly/resources/start-device.sh @@ -6,7 +6,7 @@ # # When run without a parameter a default port 17830 will be used. -CLASSPATH=lighty-network-topology-device-19.2.0-SNAPSHOT.jar +CLASSPATH=lighty-network-topology-device-19.2.0.jar for jar in `ls -1 lib/`; do diff --git a/examples/devices/lighty-notifications-device/README.md b/examples/devices/lighty-notifications-device/README.md index 5a8b96e2..a6302314 100644 --- a/examples/devices/lighty-notifications-device/README.md +++ b/examples/devices/lighty-notifications-device/README.md @@ -10,16 +10,16 @@ Check commands in [Notifications device model](#notifications-device-model) on h Build root project - for more details check: [README](../../../README.md) **Run device** -* extract binary distribution `lighty-notifications-device-19.2.0-SNAPSHOT-bin.zip` +* extract binary distribution `lighty-notifications-device-19.2.0-bin.zip` from target directory * run jar file from zip with default parameter ``` -java -jar lighty-notifications-device-19.2.0-SNAPSHOT.jar +java -jar lighty-notifications-device-19.2.0.jar ``` To run device on specific port, add port number as an argument * run device on specific port `12345` (any available port) ``` -java -jar lighty-notifications-device-19.2.0-SNAPSHOT.jar 12345 +java -jar lighty-notifications-device-19.2.0.jar 12345 ``` ### Connect to device via SSH diff --git a/examples/devices/lighty-notifications-device/pom.xml b/examples/devices/lighty-notifications-device/pom.xml index 21eca25b..cf0d6078 100644 --- a/examples/devices/lighty-notifications-device/pom.xml +++ b/examples/devices/lighty-notifications-device/pom.xml @@ -14,7 +14,7 @@ io.lighty.netconf.device.examples examples-parent - 19.2.0-SNAPSHOT + 19.2.0 ../../parents/examples-parent/pom.xml diff --git a/examples/devices/lighty-notifications-device/src/assembly/resources/start-device.sh b/examples/devices/lighty-notifications-device/src/assembly/resources/start-device.sh index 1107227e..2f39c313 100644 --- a/examples/devices/lighty-notifications-device/src/assembly/resources/start-device.sh +++ b/examples/devices/lighty-notifications-device/src/assembly/resources/start-device.sh @@ -6,7 +6,7 @@ # # When run without a parameter a default port 17830 will be used. -CLASSPATH=lighty-notifications-device-19.2.0-SNAPSHOT.jar +CLASSPATH=lighty-notifications-device-19.2.0.jar for jar in `ls -1 lib/`; do diff --git a/examples/devices/lighty-toaster-device/README.md b/examples/devices/lighty-toaster-device/README.md index 151046ea..a1bce3e9 100644 --- a/examples/devices/lighty-toaster-device/README.md +++ b/examples/devices/lighty-toaster-device/README.md @@ -13,16 +13,16 @@ of the processor calls method of `ToasterServiceImpl` which implements Build root project - for more details check: [README](../../../README.md) **Run device** -* extract binary distribution `lighty-toaster-device-19.2.0-SNAPSHOT-bin.zip` +* extract binary distribution `lighty-toaster-device-19.2.0-bin.zip` from target directory * run jar file from zip with default parameter ``` -java -jar lighty-toaster-device-19.2.0-SNAPSHOT.jar +java -jar lighty-toaster-device-19.2.0.jar ``` To run device on specific port, add port number as an argument * run device on specific port `12345` (any available port) ``` -java -jar lighty-toaster-device-19.2.0-SNAPSHOT.jar 12345 +java -jar lighty-toaster-device-19.2.0.jar 12345 ``` ### Connect to device via SSH diff --git a/examples/devices/lighty-toaster-device/pom.xml b/examples/devices/lighty-toaster-device/pom.xml index 7aececaf..5186c3ce 100644 --- a/examples/devices/lighty-toaster-device/pom.xml +++ b/examples/devices/lighty-toaster-device/pom.xml @@ -14,7 +14,7 @@ io.lighty.netconf.device.examples examples-parent - 19.2.0-SNAPSHOT + 19.2.0 ../../parents/examples-parent/pom.xml diff --git a/examples/devices/lighty-toaster-device/src/assembly/resources/start-device.sh b/examples/devices/lighty-toaster-device/src/assembly/resources/start-device.sh index 9a1c9366..5b491ca3 100644 --- a/examples/devices/lighty-toaster-device/src/assembly/resources/start-device.sh +++ b/examples/devices/lighty-toaster-device/src/assembly/resources/start-device.sh @@ -6,7 +6,7 @@ # # When run without a parameter a default port 17830 will be used. -CLASSPATH=lighty-toaster-device-19.2.0-SNAPSHOT.jar +CLASSPATH=lighty-toaster-device-19.2.0.jar for jar in `ls -1 lib/`; do diff --git a/examples/devices/lighty-toaster-multiple-devices/README.md b/examples/devices/lighty-toaster-multiple-devices/README.md index 4a428e25..fdbf97b8 100644 --- a/examples/devices/lighty-toaster-multiple-devices/README.md +++ b/examples/devices/lighty-toaster-multiple-devices/README.md @@ -13,7 +13,7 @@ Build root project - for more details check: [README](../../../README.md) `--starting-port STARTING-PORT` (Default 17380) First port for simulated device. Each other device will use incremented port number. `--thread-pool-size THREAD-POOL-SIZE` (Default 8) The number of threads to keep in the pool, when creating a device simulator, even if they are idle. ``` -java -jar lighty-toaster-multiple-devices-19.2.0-SNAPSHOT.jar --starting-port 20000 --device-count 200 --thread-pool-size 200 +java -jar lighty-toaster-multiple-devices-19.2.0.jar --starting-port 20000 --device-count 200 --thread-pool-size 200 ``` ### Connect to device via SSH diff --git a/examples/devices/lighty-toaster-multiple-devices/pom.xml b/examples/devices/lighty-toaster-multiple-devices/pom.xml index 63387bd9..eaeaf6e7 100644 --- a/examples/devices/lighty-toaster-multiple-devices/pom.xml +++ b/examples/devices/lighty-toaster-multiple-devices/pom.xml @@ -14,7 +14,7 @@ io.lighty.netconf.device.examples examples-parent - 19.2.0-SNAPSHOT + 19.2.0 ../../parents/examples-parent/pom.xml diff --git a/examples/devices/lighty-toaster-multiple-devices/src/assembly/resources/start-device.sh b/examples/devices/lighty-toaster-multiple-devices/src/assembly/resources/start-device.sh index 5c785215..73c4298f 100755 --- a/examples/devices/lighty-toaster-multiple-devices/src/assembly/resources/start-device.sh +++ b/examples/devices/lighty-toaster-multiple-devices/src/assembly/resources/start-device.sh @@ -15,7 +15,7 @@ # ./start-device --starting-port 20000 --device-count 200 --thread-pool-size 200 # -CLASSPATH=lighty-toaster-multiple-devices-19.2.0-SNAPSHOT.jar +CLASSPATH=lighty-toaster-multiple-devices-19.2.0.jar ARGUMENT_LIST=( "device-count" diff --git a/examples/devices/pom.xml b/examples/devices/pom.xml index 0f7097c2..3d4215c8 100644 --- a/examples/devices/pom.xml +++ b/examples/devices/pom.xml @@ -13,7 +13,7 @@ io.lighty.netconf.device.examples devices-aggregator - 19.2.0-SNAPSHOT + 19.2.0 pom diff --git a/examples/models/lighty-example-data-center-model/pom.xml b/examples/models/lighty-example-data-center-model/pom.xml index 1d61b838..a1918b74 100644 --- a/examples/models/lighty-example-data-center-model/pom.xml +++ b/examples/models/lighty-example-data-center-model/pom.xml @@ -18,5 +18,5 @@ io.lighty.netconf.device.examples.models lighty-example-data-center-model - 19.2.0-SNAPSHOT + 19.2.0 diff --git a/examples/models/lighty-example-network-topology-device-model/pom.xml b/examples/models/lighty-example-network-topology-device-model/pom.xml index a73d2cbf..fe0742a6 100644 --- a/examples/models/lighty-example-network-topology-device-model/pom.xml +++ b/examples/models/lighty-example-network-topology-device-model/pom.xml @@ -18,7 +18,7 @@ io.lighty.netconf.device.examples.models lighty-example-network-topology-device-model - 19.2.0-SNAPSHOT + 19.2.0 diff --git a/examples/models/lighty-example-notifications-model/pom.xml b/examples/models/lighty-example-notifications-model/pom.xml index dcc94800..a6b43186 100644 --- a/examples/models/lighty-example-notifications-model/pom.xml +++ b/examples/models/lighty-example-notifications-model/pom.xml @@ -18,6 +18,6 @@ io.lighty.netconf.device.examples.models lighty-example-notifications-model - 19.2.0-SNAPSHOT + 19.2.0 diff --git a/examples/models/pom.xml b/examples/models/pom.xml index c3d8ca0a..5195ff1f 100644 --- a/examples/models/pom.xml +++ b/examples/models/pom.xml @@ -11,7 +11,7 @@ io.lighty.netconf.device.examples.models lighty-models-aggregator - 19.2.0-SNAPSHOT + 19.2.0 pom diff --git a/examples/parents/examples-bom/pom.xml b/examples/parents/examples-bom/pom.xml index 30bdc798..990589cd 100644 --- a/examples/parents/examples-bom/pom.xml +++ b/examples/parents/examples-bom/pom.xml @@ -11,7 +11,7 @@ io.lighty.netconf.device.examples examples-bom - 19.2.0-SNAPSHOT + 19.2.0 pom ${project.groupId}:${project.artifactId} @@ -26,42 +26,42 @@ io.lighty.netconf.device.examples.models lighty-example-network-topology-device-model - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device.examples.models lighty-example-data-center-model - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device lighty-netconf-device - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device.examples lighty-actions-device - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device.examples lighty-toaster-device - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device.examples lighty-network-topology-device - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device.examples lighty-toaster-multiple-devices - 19.2.0-SNAPSHOT + 19.2.0 io.lighty.netconf.device.examples.models lighty-example-notifications-model - 19.2.0-SNAPSHOT + 19.2.0 diff --git a/examples/parents/examples-parent/pom.xml b/examples/parents/examples-parent/pom.xml index 969e52b5..4e7dad54 100644 --- a/examples/parents/examples-parent/pom.xml +++ b/examples/parents/examples-parent/pom.xml @@ -20,7 +20,7 @@ io.lighty.netconf.device.examples examples-parent - 19.2.0-SNAPSHOT + 19.2.0 pom ${project.groupId}:${project.artifactId} @@ -45,7 +45,7 @@ io.lighty.netconf.device.examples examples-bom - 19.2.0-SNAPSHOT + 19.2.0 pom import diff --git a/examples/parents/pom.xml b/examples/parents/pom.xml index 3582a459..1c3ecb67 100644 --- a/examples/parents/pom.xml +++ b/examples/parents/pom.xml @@ -12,7 +12,7 @@ io.lighty.netconf.device.examples.parents parents-aggregator pom - 19.2.0-SNAPSHOT + 19.2.0 examples-parent diff --git a/examples/pom.xml b/examples/pom.xml index 8e60d055..8a408f80 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -14,7 +14,7 @@ io.lighty.netconf.device.examples examples-aggregator pom - 19.2.0-SNAPSHOT + 19.2.0 parents diff --git a/lighty-netconf-device/pom.xml b/lighty-netconf-device/pom.xml index 4fc61c22..e82024a0 100644 --- a/lighty-netconf-device/pom.xml +++ b/lighty-netconf-device/pom.xml @@ -20,7 +20,7 @@ io.lighty.netconf.device lighty-netconf-device - 19.2.0-SNAPSHOT + 19.2.0 jar diff --git a/pom.xml b/pom.xml index 4589cc1f..e18d9d59 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ io.lighty.netconf.device netconf-device-aggregator - 19.2.0-SNAPSHOT + 19.2.0 pom