From 869fcba8782f9fc9a5532ee7bbccec667a15db58 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:42:06 +0100 Subject: [PATCH 1/8] Bump docs and scripts to 21.1.0 JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- .../lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh | 2 +- .github/workflows/lighty-rnc-app/simulator/Dockerfile | 2 +- lighty-core/lighty-controller/README.md | 2 +- lighty-examples/README.md | 2 +- .../lighty-community-restconf-netconf-app/README.md | 10 +++++----- .../lighty-controller-springboot-netconf/README.md | 2 +- .../lighty-gnmi-community-restconf-app/README.md | 8 ++++---- lighty-models/README.md | 2 +- lighty-modules/lighty-bgp/README.md | 2 +- .../lighty-gnmi/lighty-gnmi-device-simulator/README.md | 2 +- lighty-modules/lighty-netconf-sb/README.md | 2 +- lighty-modules/lighty-restconf-nb-community/README.md | 2 +- 12 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh b/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh index 4e65f88b2..2ab250392 100755 --- a/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh +++ b/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh @@ -44,7 +44,7 @@ ls -1 yangs #Run simulator for testing purpose printLine echo -e "-- Starting gNMI simulator device --\n" -java -jar ${GITHUB_WORKSPACE}/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.1.0-SNAPSHOT.jar -c ./simulator/example_config.json > /dev/null 2>&1 & +java -jar ${GITHUB_WORKSPACE}/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.1.0.jar -c ./simulator/example_config.json > /dev/null 2>&1 & #Add yangs into controller through REST rpc ./add_yangs_via_rpc.sh diff --git a/.github/workflows/lighty-rnc-app/simulator/Dockerfile b/.github/workflows/lighty-rnc-app/simulator/Dockerfile index f1a92f468..deb92e086 100644 --- a/.github/workflows/lighty-rnc-app/simulator/Dockerfile +++ b/.github/workflows/lighty-rnc-app/simulator/Dockerfile @@ -1,4 +1,4 @@ -ARG SIMULATOR_VERSION="21.0.0" +ARG SIMULATOR_VERSION="21.1.0" FROM alpine:3.20.3 as clone diff --git a/lighty-core/lighty-controller/README.md b/lighty-core/lighty-controller/README.md index e7283bd00..3011a22f5 100644 --- a/lighty-core/lighty-controller/README.md +++ b/lighty-core/lighty-controller/README.md @@ -17,7 +17,7 @@ To use Lighty controller in your project: io.lighty.core lighty-controller - 21.1.0-SNAPSHOT + 21.1.0 ``` diff --git a/lighty-examples/README.md b/lighty-examples/README.md index 0a0203f8c..c36855c11 100644 --- a/lighty-examples/README.md +++ b/lighty-examples/README.md @@ -15,7 +15,7 @@ ODL core services represent MD-SAL layer, controller, DataStore, global schema c io.lighty.core.parents lighty-dependency-artifacts - 21.1.0-SNAPSHOT + 21.1.0 pom import diff --git a/lighty-examples/lighty-community-restconf-netconf-app/README.md b/lighty-examples/lighty-community-restconf-netconf-app/README.md index ba8bf03d7..46c252ef0 100644 --- a/lighty-examples/lighty-community-restconf-netconf-app/README.md +++ b/lighty-examples/lighty-community-restconf-netconf-app/README.md @@ -21,12 +21,12 @@ build the project: ```mvn clean install``` ### Start this demo example * build the project using ```mvn clean install``` * go to target directory ```cd lighty-examples/lighty-community-restconf-netconf-app/target``` -* unzip example application bundle ```unzip lighty-community-restconf-netconf-app-21.1.0-SNAPSHOT-bin.zip``` -* go to unzipped application directory ```cd lighty-community-restconf-netconf-app-21.1.0-SNAPSHOT``` -* start controller example controller application ```java -jar lighty-community-restconf-netconf-app-21.1.0-SNAPSHOT.jar``` +* unzip example application bundle ```unzip lighty-community-restconf-netconf-app-21.1.0-bin.zip``` +* go to unzipped application directory ```cd lighty-community-restconf-netconf-app-21.1.0``` +* start controller example controller application ```java -jar lighty-community-restconf-netconf-app-21.1.0.jar``` ### Test example application -Once example application has been started using command ```java -jar lighty-community-restconf-netconf-app-21.1.0-SNAPSHOT.jar``` +Once example application has been started using command ```java -jar lighty-community-restconf-netconf-app-21.1.0.jar``` RESTCONF web interface is available at URL ```http://localhost:8888/restconf/*``` ##### URLs to start with @@ -42,7 +42,7 @@ URLs for OpenApi: https://datatracker.ietf.org/doc/html/rfc8040 ### Use custom config files There are two separated config files: for NETCONF SBP single node and for cluster. -`java -jar lighty-community-restconf-netconf-app-21.1.0-SNAPSHOT.jar /path/to/singleNodeConfig.json` +`java -jar lighty-community-restconf-netconf-app-21.1.0.jar /path/to/singleNodeConfig.json` Example configuration for single node is [here](src/main/assembly/resources/sampleConfigSingleNode.json) diff --git a/lighty-examples/lighty-controller-springboot-netconf/README.md b/lighty-examples/lighty-controller-springboot-netconf/README.md index 4e19ad8dc..26fd72239 100644 --- a/lighty-examples/lighty-controller-springboot-netconf/README.md +++ b/lighty-examples/lighty-controller-springboot-netconf/README.md @@ -46,7 +46,7 @@ mvn spring-boot:run or ``` -java -jar target/lighty-controller-springboot-21.1.0-SNAPSHOT.jar +java -jar target/lighty-controller-springboot-21.1.0.jar ``` or in any IDE, run main in diff --git a/lighty-examples/lighty-gnmi-community-restconf-app/README.md b/lighty-examples/lighty-gnmi-community-restconf-app/README.md index 86ae20894..e5c57b1ef 100644 --- a/lighty-examples/lighty-gnmi-community-restconf-app/README.md +++ b/lighty-examples/lighty-gnmi-community-restconf-app/README.md @@ -43,22 +43,22 @@ cd lighty-examples/lighty-gnmi-community-restconf-app ### Start RCgNMI controller app Unzip lighty-rcgnmi-app to current location ``` -unzip ../../lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/target/lighty-rcgnmi-app-21.1.0-SNAPSHOT-bin.zip +unzip ../../lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/target/lighty-rcgnmi-app-21.1.0-bin.zip ``` Start application with pre-prepared configuration [example_config.json](example_config.json). ``` -java -jar lighty-rcgnmi-app-21.1.0-SNAPSHOT/lighty-rcgnmi-app-21.1.0-SNAPSHOT.jar -c example_config.json +java -jar lighty-rcgnmi-app-21.1.0/lighty-rcgnmi-app-21.1.0.jar -c example_config.json ``` ### Start lighty.io gNMI device simulator Unzip gNMI simulator app to current folder. ``` -unzip ../../lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.1.0-SNAPSHOT-bin.zip +unzip ../../lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.1.0-bin.zip ``` Start the application with pre-prepared configuration [simulator_config.json](simulator/simulator_config.json) ``` -java -jar lighty-gnmi-device-simulator-21.1.0-SNAPSHOT/lighty-gnmi-device-simulator-21.1.0-SNAPSHOT.jar -c simulator/simulator_config.json +java -jar lighty-gnmi-device-simulator-21.1.0/lighty-gnmi-device-simulator-21.1.0.jar -c simulator/simulator_config.json ``` ### Add client certificates to lighty.io gNMI keystore diff --git a/lighty-models/README.md b/lighty-models/README.md index 2ce5a3903..5dc0f7b68 100644 --- a/lighty-models/README.md +++ b/lighty-models/README.md @@ -56,7 +56,7 @@ my-model/pom.xml io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-modules/lighty-bgp/README.md b/lighty-modules/lighty-bgp/README.md index 85920674e..d619a0e00 100644 --- a/lighty-modules/lighty-bgp/README.md +++ b/lighty-modules/lighty-bgp/README.md @@ -11,7 +11,7 @@ To use lighty BGP plugin in your project: io.lighty.modules lighty-bgp - 21.1.0-SNAPSHOT + 21.1.0 ``` * Initialize and start BgpModule instance: diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md index 4934f1d78..2203d919e 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md @@ -8,7 +8,7 @@ This simulator provides gNMI device driven by gNMI proto files, with datastore d io.lighty.modules.gnmi lighty-gnmi-device-simulator - 21.1.0-SNAPSHOT + 21.1.0 ``` diff --git a/lighty-modules/lighty-netconf-sb/README.md b/lighty-modules/lighty-netconf-sb/README.md index 4423b3e10..e3592cb75 100644 --- a/lighty-modules/lighty-netconf-sb/README.md +++ b/lighty-modules/lighty-netconf-sb/README.md @@ -42,7 +42,7 @@ To use NETCONF in your project: io.lighty.modules lighty-netconf-sb - 21.1.0-SNAPSHOT + 21.1.0 ``` 2. Initialize and start an instance of NETCONF SBP in your code: diff --git a/lighty-modules/lighty-restconf-nb-community/README.md b/lighty-modules/lighty-restconf-nb-community/README.md index b84c0cf9d..bd2dcbe28 100644 --- a/lighty-modules/lighty-restconf-nb-community/README.md +++ b/lighty-modules/lighty-restconf-nb-community/README.md @@ -12,7 +12,7 @@ To use RESTCONF in your project: io.lighty.modules lighty-restconf-nb-community - 21.1.0-SNAPSHOT + 21.1.0 ``` From fffa6236acb000b9e930ff8821a61e9062da8e06 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:42:06 +0100 Subject: [PATCH 2/8] Bump versions not managed by maven-release to 21.1.0 JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- .../lighty-rcgnmi-app-docker/pom.xml | 2 +- .../lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml index 14dbad2e9..a5b8dc28f 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml @@ -14,7 +14,7 @@ io.lighty.applications.rcgnmi lighty-rcgnmi-app-docker - 21.1.0-SNAPSHOT + 21.1.0 lighty-rcgnmi diff --git a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml index 6fcedf878..1b1797f2a 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml @@ -11,7 +11,7 @@ io.lighty.applications.rnc lighty-rnc-app-docker - 21.1.0-SNAPSHOT + 21.1.0 lighty-rnc From 476e886ba94e155dfaad704df083478935318b59 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:42:07 +0100 Subject: [PATCH 3/8] Set scm.tag to 21.1.0 JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- lighty-core/dependency-versions/pom.xml | 2 +- lighty-core/lighty-bom/pom.xml | 2 +- lighty-core/lighty-minimal-parent/pom.xml | 2 +- lighty-resources/log4j2-config/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lighty-core/dependency-versions/pom.xml b/lighty-core/dependency-versions/pom.xml index 393021b23..a571b9047 100644 --- a/lighty-core/dependency-versions/pom.xml +++ b/lighty-core/dependency-versions/pom.xml @@ -273,7 +273,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - HEAD + 21.1.0 diff --git a/lighty-core/lighty-bom/pom.xml b/lighty-core/lighty-bom/pom.xml index 59b9d2892..5dcb391da 100644 --- a/lighty-core/lighty-bom/pom.xml +++ b/lighty-core/lighty-bom/pom.xml @@ -291,7 +291,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - HEAD + 21.1.0 diff --git a/lighty-core/lighty-minimal-parent/pom.xml b/lighty-core/lighty-minimal-parent/pom.xml index ba4085ff1..1725aadb5 100644 --- a/lighty-core/lighty-minimal-parent/pom.xml +++ b/lighty-core/lighty-minimal-parent/pom.xml @@ -103,7 +103,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - HEAD + 21.1.0 diff --git a/lighty-resources/log4j2-config/pom.xml b/lighty-resources/log4j2-config/pom.xml index b97097d7d..73406af4e 100644 --- a/lighty-resources/log4j2-config/pom.xml +++ b/lighty-resources/log4j2-config/pom.xml @@ -59,7 +59,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - HEAD + 21.1.0 diff --git a/pom.xml b/pom.xml index 61e83498d..4ab94bdbb 100644 --- a/pom.xml +++ b/pom.xml @@ -91,7 +91,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - HEAD + 21.1.0 From a2d027d35cb06619928900b875cf68d0a353a77d Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:44:13 +0100 Subject: [PATCH 4/8] [maven-release-plugin] prepare release 21.1.0 JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- .../lighty-app-modules-config/pom.xml | 2 +- .../lighty-rcgnmi-app-module/pom.xml | 4 +- .../lighty-rcgnmi-app/pom.xml | 4 +- .../lighty-rcgnmi-app-aggregator/pom.xml | 2 +- .../lighty-rnc-app/pom.xml | 4 +- .../lighty-rnc-module/pom.xml | 4 +- .../lighty-rnc-app-aggregator/pom.xml | 2 +- lighty-applications/pom.xml | 2 +- lighty-core/dependency-versions/pom.xml | 2 +- lighty-core/lighty-app-parent/pom.xml | 2 +- lighty-core/lighty-binding-parent/pom.xml | 2 +- lighty-core/lighty-bom/pom.xml | 86 +++++++++---------- lighty-core/lighty-clustering/pom.xml | 2 +- lighty-core/lighty-codecs-util/pom.xml | 2 +- lighty-core/lighty-common/pom.xml | 2 +- .../lighty-controller-guice-di/pom.xml | 2 +- .../lighty-controller-spring-di/pom.xml | 2 +- lighty-core/lighty-controller/pom.xml | 2 +- lighty-core/lighty-minimal-parent/pom.xml | 6 +- lighty-core/lighty-parent/pom.xml | 2 +- lighty-core/pom.xml | 2 +- .../lighty-bgp-community-restconf-app/pom.xml | 4 +- .../lighty-community-aaa-restconf-app/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 2 +- .../pom.xml | 10 ++- lighty-examples/lighty-guice-app/pom.xml | 2 +- lighty-examples/pom.xml | 2 +- .../pom.xml | 4 +- .../lighty-gnmi-force-capabilities/pom.xml | 4 +- .../lighty-gnmi-topology-model/pom.xml | 4 +- .../lighty-gnmi-yang-storage-model/pom.xml | 4 +- .../lighty-gnoi-sonic-yang-model/pom.xml | 4 +- lighty-models/lighty-gnmi-models/pom.xml | 2 +- lighty-models/openconfig-models/pom.xml | 2 +- lighty-models/pom.xml | 2 +- .../test/lighty-example-data-center/pom.xml | 2 +- lighty-models/test/lighty-test-models/pom.xml | 2 +- lighty-models/test/lighty-toaster/pom.xml | 2 +- lighty-models/test/pom.xml | 2 +- lighty-modules/integration-tests-aaa/pom.xml | 2 +- lighty-modules/integration-tests/pom.xml | 2 +- .../lighty-aaa-encryption-service/pom.xml | 2 +- .../lighty-aaa-aggregator/lighty-aaa/pom.xml | 2 +- lighty-modules/lighty-aaa-aggregator/pom.xml | 2 +- lighty-modules/lighty-bgp/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-commons/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-connector/pom.xml | 2 +- .../lighty-gnmi-device-simulator/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-proto/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-sb/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-test/pom.xml | 4 +- lighty-modules/lighty-gnmi/pom.xml | 2 +- lighty-modules/lighty-jetty-server/pom.xml | 2 +- lighty-modules/lighty-netconf-sb/pom.xml | 2 +- lighty-modules/lighty-openapi/pom.xml | 2 +- .../lighty-restconf-nb-community/pom.xml | 2 +- lighty-modules/pom.xml | 2 +- .../controller-application-assembly/pom.xml | 2 +- lighty-resources/log4j2-config/pom.xml | 2 +- lighty-resources/pom.xml | 2 +- .../singlenode-configuration/pom.xml | 2 +- lighty-resources/start-script/pom.xml | 2 +- lighty-tests-report/pom.xml | 4 +- pom.xml | 2 +- 65 files changed, 134 insertions(+), 130 deletions(-) diff --git a/lighty-applications/lighty-app-modules-config/pom.xml b/lighty-applications/lighty-app-modules-config/pom.xml index 15419dc15..c64ca00b5 100644 --- a/lighty-applications/lighty-app-modules-config/pom.xml +++ b/lighty-applications/lighty-app-modules-config/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml index 3f5fdcdbc..783e33791 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml io.lighty.applications.rcgnmi lighty-rcgnmi-app-module - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml index 9eb1bc60e..f3872eae7 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-app-parent/pom.xml io.lighty.applications.rcgnmi lighty-rcgnmi-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.applications.rcgnmi.app.RCgNMIApp diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml index 1379cab6d..1d3d86cd1 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml @@ -12,7 +12,7 @@ io.lighty.applications.rcgnmi lighty-rcgnmi-app-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml index bcab1f0ae..c913b8db1 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml @@ -12,13 +12,13 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-app-parent/pom.xml io.lighty.applications.rnc lighty-rnc-app - 21.1.0-SNAPSHOT + 21.1.0 jar diff --git a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml index 68ffa6ebe..37497c352 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml @@ -12,13 +12,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml io.lighty.applications.rnc lighty-rnc-module - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-applications/lighty-rnc-app-aggregator/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/pom.xml index 13cfda651..07f04e7d3 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/pom.xml @@ -11,7 +11,7 @@ io.lighty.applications.rnc lighty-rnc-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-applications/pom.xml b/lighty-applications/pom.xml index e0c151dd9..9330df12a 100644 --- a/lighty-applications/pom.xml +++ b/lighty-applications/pom.xml @@ -11,7 +11,7 @@ io.lighty.applications lighty-applications-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-core/dependency-versions/pom.xml b/lighty-core/dependency-versions/pom.xml index a571b9047..6fca84ce2 100644 --- a/lighty-core/dependency-versions/pom.xml +++ b/lighty-core/dependency-versions/pom.xml @@ -10,7 +10,7 @@ 4.0.0 io.lighty.core dependency-versions - 21.1.0-SNAPSHOT + 21.1.0 pom ${project.groupId}:${project.artifactId} diff --git a/lighty-core/lighty-app-parent/pom.xml b/lighty-core/lighty-app-parent/pom.xml index d806d68c0..a5772307c 100644 --- a/lighty-core/lighty-app-parent/pom.xml +++ b/lighty-core/lighty-app-parent/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-binding-parent/pom.xml b/lighty-core/lighty-binding-parent/pom.xml index d37581431..c758d9dc6 100644 --- a/lighty-core/lighty-binding-parent/pom.xml +++ b/lighty-core/lighty-binding-parent/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-bom/pom.xml b/lighty-core/lighty-bom/pom.xml index 5dcb391da..795457a00 100644 --- a/lighty-core/lighty-bom/pom.xml +++ b/lighty-core/lighty-bom/pom.xml @@ -10,7 +10,7 @@ 4.0.0 io.lighty.core lighty-bom - 21.1.0-SNAPSHOT + 21.1.0 pom ${project.groupId}:${project.artifactId} @@ -26,231 +26,231 @@ io.lighty.core lighty-codecs-util - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.core lighty-common - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.core lighty-controller - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.core lighty-clustering - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.core lighty-controller-guice-di - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.core lighty-controller-spring-di - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.models openconfig-models - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.tests integration-tests - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.tests integration-tests-aaa - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-aaa - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-jetty-server - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-netconf-sb - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-restconf-nb-community - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-openapi - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-aaa-encryption-service - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules lighty-bgp - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.gnmi lighty-gnmi-connector - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.gnmi lighty-gnmi-commons - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.gnmi lighty-gnmi-proto - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.gnmi lighty-gnmi-device-simulator - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.gnmi.southbound lighty-gnmi-sb - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.models.gnmi lighty-gnmi-topology-model - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.models.gnmi lighty-gnmi-yang-storage-model - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.models.gnmi lighty-gnmi-certificates-storage-model - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.models.gnmi lighty-gnmi-force-capabilities - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.applications.rcgnmi lighty-rcgnmi-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.applications.rcgnmi lighty-rcgnmi-app-module - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.applications.rnc lighty-rnc-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.applications.rnc lighty-rnc-module - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.applications lighty-app-modules-config - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.kit.examples.controllers lighty-community-aaa-restconf-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.kit.examples.controllers lighty-community-restconf-netconf-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.kit.examples.controllers lighty-bgp-community-restconf-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.core lighty-controller-springboot - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.kit.examples.controllers lighty-guice-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.kit.examples.controllers lighty-community-restconf-actions-app - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.resources controller-application-assembly - 21.1.0-SNAPSHOT + 21.1.0 provided io.lighty.resources singlenode-configuration - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.resources start-script - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.models.test lighty-test-models - 21.1.0-SNAPSHOT + 21.1.0 test io.lighty.models.test lighty-toaster - 21.1.0-SNAPSHOT + 21.1.0 test io.lighty.resources log4j2-config - 21.1.0-SNAPSHOT + 21.1.0 test diff --git a/lighty-core/lighty-clustering/pom.xml b/lighty-core/lighty-clustering/pom.xml index 5c3940ff0..6afe8350c 100644 --- a/lighty-core/lighty-clustering/pom.xml +++ b/lighty-core/lighty-clustering/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-codecs-util/pom.xml b/lighty-core/lighty-codecs-util/pom.xml index 26f0dffea..dbdfba470 100644 --- a/lighty-core/lighty-codecs-util/pom.xml +++ b/lighty-core/lighty-codecs-util/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-common/pom.xml b/lighty-core/lighty-common/pom.xml index 105400ef9..220b41fc6 100644 --- a/lighty-core/lighty-common/pom.xml +++ b/lighty-core/lighty-common/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-controller-guice-di/pom.xml b/lighty-core/lighty-controller-guice-di/pom.xml index 4fb11ec3c..1940d64e6 100644 --- a/lighty-core/lighty-controller-guice-di/pom.xml +++ b/lighty-core/lighty-controller-guice-di/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-controller-spring-di/pom.xml b/lighty-core/lighty-controller-spring-di/pom.xml index 165ee83ec..667e26a95 100644 --- a/lighty-core/lighty-controller-spring-di/pom.xml +++ b/lighty-core/lighty-controller-spring-di/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-controller/pom.xml b/lighty-core/lighty-controller/pom.xml index da15f53cc..c7c34a086 100644 --- a/lighty-core/lighty-controller/pom.xml +++ b/lighty-core/lighty-controller/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-parent diff --git a/lighty-core/lighty-minimal-parent/pom.xml b/lighty-core/lighty-minimal-parent/pom.xml index 1725aadb5..b428a9e81 100644 --- a/lighty-core/lighty-minimal-parent/pom.xml +++ b/lighty-core/lighty-minimal-parent/pom.xml @@ -10,7 +10,7 @@ 4.0.0 io.lighty.core lighty-minimal-parent - 21.1.0-SNAPSHOT + 21.1.0 pom ${project.groupId}:${project.artifactId} @@ -29,14 +29,14 @@ io.lighty.core dependency-versions - 21.1.0-SNAPSHOT + 21.1.0 pom import io.lighty.core lighty-bom - 21.1.0-SNAPSHOT + 21.1.0 pom import diff --git a/lighty-core/lighty-parent/pom.xml b/lighty-core/lighty-parent/pom.xml index fe07e24f8..c45e6f85c 100644 --- a/lighty-core/lighty-parent/pom.xml +++ b/lighty-core/lighty-parent/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-minimal-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-minimal-parent diff --git a/lighty-core/pom.xml b/lighty-core/pom.xml index a0a957462..a4d5cb463 100644 --- a/lighty-core/pom.xml +++ b/lighty-core/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-core-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-examples/lighty-bgp-community-restconf-app/pom.xml b/lighty-examples/lighty-bgp-community-restconf-app/pom.xml index 0dae77d1d..00e83b3c7 100644 --- a/lighty-examples/lighty-bgp-community-restconf-app/pom.xml +++ b/lighty-examples/lighty-bgp-community-restconf-app/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-app-parent/pom.xml io.lighty.kit.examples.controllers lighty-bgp-community-restconf-app - 21.1.0-SNAPSHOT + 21.1.0 jar diff --git a/lighty-examples/lighty-community-aaa-restconf-app/pom.xml b/lighty-examples/lighty-community-aaa-restconf-app/pom.xml index 68b77b647..3d152f4fd 100644 --- a/lighty-examples/lighty-community-aaa-restconf-app/pom.xml +++ b/lighty-examples/lighty-community-aaa-restconf-app/pom.xml @@ -12,13 +12,13 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-app-parent io.lighty.kit.examples.controllers lighty-community-aaa-restconf-app - 21.1.0-SNAPSHOT + 21.1.0 jar diff --git a/lighty-examples/lighty-community-restconf-actions-app/pom.xml b/lighty-examples/lighty-community-restconf-actions-app/pom.xml index 35ba1c989..6b3d7eb0e 100644 --- a/lighty-examples/lighty-community-restconf-actions-app/pom.xml +++ b/lighty-examples/lighty-community-restconf-actions-app/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-app-parent @@ -50,7 +50,7 @@ io.lighty.models.test example-data-center - 21.1.0-SNAPSHOT + 21.1.0 compile diff --git a/lighty-examples/lighty-community-restconf-netconf-app/pom.xml b/lighty-examples/lighty-community-restconf-netconf-app/pom.xml index 3babf33a5..60dde40d3 100644 --- a/lighty-examples/lighty-community-restconf-netconf-app/pom.xml +++ b/lighty-examples/lighty-community-restconf-netconf-app/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-app-parent diff --git a/lighty-examples/lighty-controller-springboot-netconf/pom.xml b/lighty-examples/lighty-controller-springboot-netconf/pom.xml index fdefcb97a..215df4104 100644 --- a/lighty-examples/lighty-controller-springboot-netconf/pom.xml +++ b/lighty-examples/lighty-controller-springboot-netconf/pom.xml @@ -17,7 +17,7 @@ io.lighty.core lighty-controller-springboot - 21.1.0-SNAPSHOT + 21.1.0 jar Demo lighty.io project for SpringBoot @@ -33,14 +33,14 @@ io.lighty.core lighty-bom - 21.1.0-SNAPSHOT + 21.1.0 pom import io.lighty.core dependency-versions - 21.1.0-SNAPSHOT + 21.1.0 pom import @@ -137,4 +137,8 @@ + + + 21.1.0 + diff --git a/lighty-examples/lighty-guice-app/pom.xml b/lighty-examples/lighty-guice-app/pom.xml index 40de83587..73998caca 100644 --- a/lighty-examples/lighty-guice-app/pom.xml +++ b/lighty-examples/lighty-guice-app/pom.xml @@ -11,7 +11,7 @@ lighty-app-parent io.lighty.core - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-app-parent/pom.xml diff --git a/lighty-examples/pom.xml b/lighty-examples/pom.xml index 380350bc3..c4b4c344a 100644 --- a/lighty-examples/pom.xml +++ b/lighty-examples/pom.xml @@ -11,7 +11,7 @@ io.lighty.kit.examples example-applications-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml index 499ef15d2..ee5ac5d0f 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml @@ -13,12 +13,12 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-certificates-storage-model - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml index 6c4ee8aec..8a1f30c1c 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-force-capabilities - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml index 72711e8cc..2588ffa37 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-topology-model - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml index ede9e6a10..7b4ac4123 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml @@ -13,12 +13,12 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-yang-storage-model - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml index d924edcfd..ee4b98f6d 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml @@ -11,12 +11,12 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnoi-sonic-yang-model - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-models/lighty-gnmi-models/pom.xml b/lighty-models/lighty-gnmi-models/pom.xml index f3f1cee28..a33a69d10 100644 --- a/lighty-models/lighty-gnmi-models/pom.xml +++ b/lighty-models/lighty-gnmi-models/pom.xml @@ -12,7 +12,7 @@ io.lighty.models.gnmi lighty-gnmi-models - 21.1.0-SNAPSHOT + 21.1.0 pom ${project.groupId}:${project.artifactId} diff --git a/lighty-models/openconfig-models/pom.xml b/lighty-models/openconfig-models/pom.xml index 172dda1d0..3452c68cd 100644 --- a/lighty-models/openconfig-models/pom.xml +++ b/lighty-models/openconfig-models/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-binding-parent diff --git a/lighty-models/pom.xml b/lighty-models/pom.xml index 650fb3da1..d5b03868f 100644 --- a/lighty-models/pom.xml +++ b/lighty-models/pom.xml @@ -11,7 +11,7 @@ io.lighty.models lighty-models-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-models/test/lighty-example-data-center/pom.xml b/lighty-models/test/lighty-example-data-center/pom.xml index eec0d2acc..d5463fddd 100644 --- a/lighty-models/test/lighty-example-data-center/pom.xml +++ b/lighty-models/test/lighty-example-data-center/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/ diff --git a/lighty-models/test/lighty-test-models/pom.xml b/lighty-models/test/lighty-test-models/pom.xml index ed1fc6516..90f275a75 100644 --- a/lighty-models/test/lighty-test-models/pom.xml +++ b/lighty-models/test/lighty-test-models/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/ diff --git a/lighty-models/test/lighty-toaster/pom.xml b/lighty-models/test/lighty-toaster/pom.xml index c7fa1f528..32cd6253d 100644 --- a/lighty-models/test/lighty-toaster/pom.xml +++ b/lighty-models/test/lighty-toaster/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-binding-parent/ diff --git a/lighty-models/test/pom.xml b/lighty-models/test/pom.xml index 977d2c777..c1b061cfa 100644 --- a/lighty-models/test/pom.xml +++ b/lighty-models/test/pom.xml @@ -11,7 +11,7 @@ io.lighty.models.test lighty-models-test-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-modules/integration-tests-aaa/pom.xml b/lighty-modules/integration-tests-aaa/pom.xml index 9bf399d5e..08ca736fd 100644 --- a/lighty-modules/integration-tests-aaa/pom.xml +++ b/lighty-modules/integration-tests-aaa/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-modules/integration-tests/pom.xml b/lighty-modules/integration-tests/pom.xml index ece16deef..efbf037a2 100644 --- a/lighty-modules/integration-tests/pom.xml +++ b/lighty-modules/integration-tests/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml b/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml index b8fe518b7..6b0a3ec5e 100644 --- a/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml +++ b/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml @@ -11,7 +11,7 @@ lighty-parent io.lighty.core - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml b/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml index 759f19390..568dbae9a 100644 --- a/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml +++ b/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-modules/lighty-aaa-aggregator/pom.xml b/lighty-modules/lighty-aaa-aggregator/pom.xml index c9b3a8cd6..590126240 100644 --- a/lighty-modules/lighty-aaa-aggregator/pom.xml +++ b/lighty-modules/lighty-aaa-aggregator/pom.xml @@ -11,7 +11,7 @@ io.lighty.modules lighty-aaa-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-modules/lighty-bgp/pom.xml b/lighty-modules/lighty-bgp/pom.xml index fca0747c8..559a8926d 100644 --- a/lighty-modules/lighty-bgp/pom.xml +++ b/lighty-modules/lighty-bgp/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent/pom.xml io.lighty.modules lighty-bgp - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml index fbc963292..1c3f496f7 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-commons - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml index 0771dba92..5e5ef6079 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml index 357d94824..e47ae1b8b 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-app-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-app-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-device-simulator - 21.1.0-SNAPSHOT + 21.1.0 io.lighty.modules.gnmi.simulatordevice.main.GnmiSimulatorApp diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml index f58a199fb..d488567bf 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-proto - 21.1.0-SNAPSHOT + 21.1.0 3.25.5 diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml index 58f95daf7..96d4558b9 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi.southbound lighty-gnmi-sb - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml index be9a11015..f423aa015 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-test - 21.1.0-SNAPSHOT + 21.1.0 true diff --git a/lighty-modules/lighty-gnmi/pom.xml b/lighty-modules/lighty-gnmi/pom.xml index f65800432..00e742c94 100644 --- a/lighty-modules/lighty-gnmi/pom.xml +++ b/lighty-modules/lighty-gnmi/pom.xml @@ -12,7 +12,7 @@ io.lighty.modules.gnmi lighty-gnmi - 21.1.0-SNAPSHOT + 21.1.0 pom diff --git a/lighty-modules/lighty-jetty-server/pom.xml b/lighty-modules/lighty-jetty-server/pom.xml index 834b164ea..d8e0c0aa9 100644 --- a/lighty-modules/lighty-jetty-server/pom.xml +++ b/lighty-modules/lighty-jetty-server/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-netconf-sb/pom.xml b/lighty-modules/lighty-netconf-sb/pom.xml index c96945617..d43907fb6 100644 --- a/lighty-modules/lighty-netconf-sb/pom.xml +++ b/lighty-modules/lighty-netconf-sb/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-openapi/pom.xml b/lighty-modules/lighty-openapi/pom.xml index f51434dcd..51745c61e 100644 --- a/lighty-modules/lighty-openapi/pom.xml +++ b/lighty-modules/lighty-openapi/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-restconf-nb-community/pom.xml b/lighty-modules/lighty-restconf-nb-community/pom.xml index 59fbbdf94..e9b02cf79 100644 --- a/lighty-modules/lighty-restconf-nb-community/pom.xml +++ b/lighty-modules/lighty-restconf-nb-community/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-modules/pom.xml b/lighty-modules/pom.xml index 3098148a8..5a984f7d9 100644 --- a/lighty-modules/pom.xml +++ b/lighty-modules/pom.xml @@ -11,7 +11,7 @@ io.lighty.modules lighty-modules-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom ${project.groupId}:${project.artifactId} diff --git a/lighty-resources/controller-application-assembly/pom.xml b/lighty-resources/controller-application-assembly/pom.xml index 87d217abc..f62133605 100644 --- a/lighty-resources/controller-application-assembly/pom.xml +++ b/lighty-resources/controller-application-assembly/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-resources/log4j2-config/pom.xml b/lighty-resources/log4j2-config/pom.xml index 73406af4e..dc5efab7b 100644 --- a/lighty-resources/log4j2-config/pom.xml +++ b/lighty-resources/log4j2-config/pom.xml @@ -11,7 +11,7 @@ io.lighty.resources log4j2-config - 21.1.0-SNAPSHOT + 21.1.0 jar ${project.groupId}:${project.artifactId} diff --git a/lighty-resources/pom.xml b/lighty-resources/pom.xml index 975fede59..927be2b4d 100644 --- a/lighty-resources/pom.xml +++ b/lighty-resources/pom.xml @@ -12,7 +12,7 @@ io.lighty.resources lighty-resources-aggregator pom - 21.1.0-SNAPSHOT + 21.1.0 true diff --git a/lighty-resources/singlenode-configuration/pom.xml b/lighty-resources/singlenode-configuration/pom.xml index 5813861d6..b94086559 100644 --- a/lighty-resources/singlenode-configuration/pom.xml +++ b/lighty-resources/singlenode-configuration/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-resources/start-script/pom.xml b/lighty-resources/start-script/pom.xml index 225987d82..296862eea 100644 --- a/lighty-resources/start-script/pom.xml +++ b/lighty-resources/start-script/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../../lighty-core/lighty-parent diff --git a/lighty-tests-report/pom.xml b/lighty-tests-report/pom.xml index 39e7f15c1..226eb5b1c 100644 --- a/lighty-tests-report/pom.xml +++ b/lighty-tests-report/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-parent - 21.1.0-SNAPSHOT + 21.1.0 ../lighty-core/lighty-parent @@ -160,7 +160,7 @@ io.lighty.modules.gnmi lighty-gnmi-test - 21.1.0-SNAPSHOT + 21.1.0 diff --git a/pom.xml b/pom.xml index 4ab94bdbb..52f0dabb1 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ io.lighty lighty-aggregator - 21.1.0-SNAPSHOT + 21.1.0 pom lighty From 5f55b1dc61623798283385b1658fe792c66fe2cb Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:44:13 +0100 Subject: [PATCH 5/8] [maven-release-plugin] prepare for next development iteration JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- .../lighty-app-modules-config/pom.xml | 2 +- .../lighty-rcgnmi-app-module/pom.xml | 4 +- .../lighty-rcgnmi-app/pom.xml | 4 +- .../lighty-rcgnmi-app-aggregator/pom.xml | 2 +- .../lighty-rnc-app/pom.xml | 4 +- .../lighty-rnc-module/pom.xml | 4 +- .../lighty-rnc-app-aggregator/pom.xml | 2 +- lighty-applications/pom.xml | 2 +- lighty-core/dependency-versions/pom.xml | 2 +- lighty-core/lighty-app-parent/pom.xml | 2 +- lighty-core/lighty-binding-parent/pom.xml | 2 +- lighty-core/lighty-bom/pom.xml | 86 +++++++++---------- lighty-core/lighty-clustering/pom.xml | 2 +- lighty-core/lighty-codecs-util/pom.xml | 2 +- lighty-core/lighty-common/pom.xml | 2 +- .../lighty-controller-guice-di/pom.xml | 2 +- .../lighty-controller-spring-di/pom.xml | 2 +- lighty-core/lighty-controller/pom.xml | 2 +- lighty-core/lighty-minimal-parent/pom.xml | 6 +- lighty-core/lighty-parent/pom.xml | 2 +- lighty-core/pom.xml | 2 +- .../lighty-bgp-community-restconf-app/pom.xml | 4 +- .../lighty-community-aaa-restconf-app/pom.xml | 4 +- .../pom.xml | 4 +- .../pom.xml | 2 +- .../pom.xml | 10 +-- lighty-examples/lighty-guice-app/pom.xml | 2 +- lighty-examples/pom.xml | 2 +- .../pom.xml | 4 +- .../lighty-gnmi-force-capabilities/pom.xml | 4 +- .../lighty-gnmi-topology-model/pom.xml | 4 +- .../lighty-gnmi-yang-storage-model/pom.xml | 4 +- .../lighty-gnoi-sonic-yang-model/pom.xml | 4 +- lighty-models/lighty-gnmi-models/pom.xml | 2 +- lighty-models/openconfig-models/pom.xml | 2 +- lighty-models/pom.xml | 2 +- .../test/lighty-example-data-center/pom.xml | 2 +- lighty-models/test/lighty-test-models/pom.xml | 2 +- lighty-models/test/lighty-toaster/pom.xml | 2 +- lighty-models/test/pom.xml | 2 +- lighty-modules/integration-tests-aaa/pom.xml | 2 +- lighty-modules/integration-tests/pom.xml | 2 +- .../lighty-aaa-encryption-service/pom.xml | 2 +- .../lighty-aaa-aggregator/lighty-aaa/pom.xml | 2 +- lighty-modules/lighty-aaa-aggregator/pom.xml | 2 +- lighty-modules/lighty-bgp/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-commons/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-connector/pom.xml | 2 +- .../lighty-gnmi-device-simulator/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-proto/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-sb/pom.xml | 4 +- .../lighty-gnmi/lighty-gnmi-test/pom.xml | 4 +- lighty-modules/lighty-gnmi/pom.xml | 2 +- lighty-modules/lighty-jetty-server/pom.xml | 2 +- lighty-modules/lighty-netconf-sb/pom.xml | 2 +- lighty-modules/lighty-openapi/pom.xml | 2 +- .../lighty-restconf-nb-community/pom.xml | 2 +- lighty-modules/pom.xml | 2 +- .../controller-application-assembly/pom.xml | 2 +- lighty-resources/log4j2-config/pom.xml | 2 +- lighty-resources/pom.xml | 2 +- .../singlenode-configuration/pom.xml | 2 +- lighty-resources/start-script/pom.xml | 2 +- lighty-tests-report/pom.xml | 4 +- pom.xml | 2 +- 65 files changed, 130 insertions(+), 134 deletions(-) diff --git a/lighty-applications/lighty-app-modules-config/pom.xml b/lighty-applications/lighty-app-modules-config/pom.xml index c64ca00b5..8d68f3f3c 100644 --- a/lighty-applications/lighty-app-modules-config/pom.xml +++ b/lighty-applications/lighty-app-modules-config/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml index 783e33791..9a6bc84fa 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-module/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml io.lighty.applications.rcgnmi lighty-rcgnmi-app-module - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml index f3872eae7..f8edb5a72 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-app-parent/pom.xml io.lighty.applications.rcgnmi lighty-rcgnmi-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.applications.rcgnmi.app.RCgNMIApp diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml index 1d3d86cd1..925e0f70e 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/pom.xml @@ -12,7 +12,7 @@ io.lighty.applications.rcgnmi lighty-rcgnmi-app-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml index c913b8db1..d4e59aff7 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app/pom.xml @@ -12,13 +12,13 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-app-parent/pom.xml io.lighty.applications.rnc lighty-rnc-app - 21.1.0 + 21.2.0-SNAPSHOT jar diff --git a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml index 37497c352..a1e8a8c77 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-module/pom.xml @@ -12,13 +12,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml io.lighty.applications.rnc lighty-rnc-module - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-applications/lighty-rnc-app-aggregator/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/pom.xml index 07f04e7d3..baf7bf368 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/pom.xml @@ -11,7 +11,7 @@ io.lighty.applications.rnc lighty-rnc-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-applications/pom.xml b/lighty-applications/pom.xml index 9330df12a..0437f6ae9 100644 --- a/lighty-applications/pom.xml +++ b/lighty-applications/pom.xml @@ -11,7 +11,7 @@ io.lighty.applications lighty-applications-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-core/dependency-versions/pom.xml b/lighty-core/dependency-versions/pom.xml index 6fca84ce2..977ac4958 100644 --- a/lighty-core/dependency-versions/pom.xml +++ b/lighty-core/dependency-versions/pom.xml @@ -10,7 +10,7 @@ 4.0.0 io.lighty.core dependency-versions - 21.1.0 + 21.2.0-SNAPSHOT pom ${project.groupId}:${project.artifactId} diff --git a/lighty-core/lighty-app-parent/pom.xml b/lighty-core/lighty-app-parent/pom.xml index a5772307c..fb8052497 100644 --- a/lighty-core/lighty-app-parent/pom.xml +++ b/lighty-core/lighty-app-parent/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-binding-parent/pom.xml b/lighty-core/lighty-binding-parent/pom.xml index c758d9dc6..f0dbeecd4 100644 --- a/lighty-core/lighty-binding-parent/pom.xml +++ b/lighty-core/lighty-binding-parent/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-bom/pom.xml b/lighty-core/lighty-bom/pom.xml index 795457a00..051f95db1 100644 --- a/lighty-core/lighty-bom/pom.xml +++ b/lighty-core/lighty-bom/pom.xml @@ -10,7 +10,7 @@ 4.0.0 io.lighty.core lighty-bom - 21.1.0 + 21.2.0-SNAPSHOT pom ${project.groupId}:${project.artifactId} @@ -26,231 +26,231 @@ io.lighty.core lighty-codecs-util - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.core lighty-common - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.core lighty-controller - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.core lighty-clustering - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.core lighty-controller-guice-di - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.core lighty-controller-spring-di - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.models openconfig-models - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.tests integration-tests - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.tests integration-tests-aaa - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-aaa - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-jetty-server - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-netconf-sb - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-restconf-nb-community - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-openapi - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-aaa-encryption-service - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules lighty-bgp - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.gnmi lighty-gnmi-connector - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.gnmi lighty-gnmi-commons - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.gnmi lighty-gnmi-proto - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.gnmi lighty-gnmi-device-simulator - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.gnmi.southbound lighty-gnmi-sb - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.models.gnmi lighty-gnmi-topology-model - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.models.gnmi lighty-gnmi-yang-storage-model - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.models.gnmi lighty-gnmi-certificates-storage-model - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.models.gnmi lighty-gnmi-force-capabilities - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.applications.rcgnmi lighty-rcgnmi-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.applications.rcgnmi lighty-rcgnmi-app-module - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.applications.rnc lighty-rnc-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.applications.rnc lighty-rnc-module - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.applications lighty-app-modules-config - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.kit.examples.controllers lighty-community-aaa-restconf-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.kit.examples.controllers lighty-community-restconf-netconf-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.kit.examples.controllers lighty-bgp-community-restconf-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.core lighty-controller-springboot - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.kit.examples.controllers lighty-guice-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.kit.examples.controllers lighty-community-restconf-actions-app - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.resources controller-application-assembly - 21.1.0 + 21.2.0-SNAPSHOT provided io.lighty.resources singlenode-configuration - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.resources start-script - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.models.test lighty-test-models - 21.1.0 + 21.2.0-SNAPSHOT test io.lighty.models.test lighty-toaster - 21.1.0 + 21.2.0-SNAPSHOT test io.lighty.resources log4j2-config - 21.1.0 + 21.2.0-SNAPSHOT test diff --git a/lighty-core/lighty-clustering/pom.xml b/lighty-core/lighty-clustering/pom.xml index 6afe8350c..2ef264268 100644 --- a/lighty-core/lighty-clustering/pom.xml +++ b/lighty-core/lighty-clustering/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-codecs-util/pom.xml b/lighty-core/lighty-codecs-util/pom.xml index dbdfba470..6c3880a93 100644 --- a/lighty-core/lighty-codecs-util/pom.xml +++ b/lighty-core/lighty-codecs-util/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-common/pom.xml b/lighty-core/lighty-common/pom.xml index 220b41fc6..abadb2b6f 100644 --- a/lighty-core/lighty-common/pom.xml +++ b/lighty-core/lighty-common/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-controller-guice-di/pom.xml b/lighty-core/lighty-controller-guice-di/pom.xml index 1940d64e6..a24ca65c4 100644 --- a/lighty-core/lighty-controller-guice-di/pom.xml +++ b/lighty-core/lighty-controller-guice-di/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-controller-spring-di/pom.xml b/lighty-core/lighty-controller-spring-di/pom.xml index 667e26a95..3484bca29 100644 --- a/lighty-core/lighty-controller-spring-di/pom.xml +++ b/lighty-core/lighty-controller-spring-di/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-controller/pom.xml b/lighty-core/lighty-controller/pom.xml index c7c34a086..745ba51bd 100644 --- a/lighty-core/lighty-controller/pom.xml +++ b/lighty-core/lighty-controller/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-parent diff --git a/lighty-core/lighty-minimal-parent/pom.xml b/lighty-core/lighty-minimal-parent/pom.xml index b428a9e81..079614939 100644 --- a/lighty-core/lighty-minimal-parent/pom.xml +++ b/lighty-core/lighty-minimal-parent/pom.xml @@ -10,7 +10,7 @@ 4.0.0 io.lighty.core lighty-minimal-parent - 21.1.0 + 21.2.0-SNAPSHOT pom ${project.groupId}:${project.artifactId} @@ -29,14 +29,14 @@ io.lighty.core dependency-versions - 21.1.0 + 21.2.0-SNAPSHOT pom import io.lighty.core lighty-bom - 21.1.0 + 21.2.0-SNAPSHOT pom import diff --git a/lighty-core/lighty-parent/pom.xml b/lighty-core/lighty-parent/pom.xml index c45e6f85c..701d88084 100644 --- a/lighty-core/lighty-parent/pom.xml +++ b/lighty-core/lighty-parent/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-minimal-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-minimal-parent diff --git a/lighty-core/pom.xml b/lighty-core/pom.xml index a4d5cb463..727f3f407 100644 --- a/lighty-core/pom.xml +++ b/lighty-core/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-core-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-examples/lighty-bgp-community-restconf-app/pom.xml b/lighty-examples/lighty-bgp-community-restconf-app/pom.xml index 00e83b3c7..a876bed69 100644 --- a/lighty-examples/lighty-bgp-community-restconf-app/pom.xml +++ b/lighty-examples/lighty-bgp-community-restconf-app/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-app-parent/pom.xml io.lighty.kit.examples.controllers lighty-bgp-community-restconf-app - 21.1.0 + 21.2.0-SNAPSHOT jar diff --git a/lighty-examples/lighty-community-aaa-restconf-app/pom.xml b/lighty-examples/lighty-community-aaa-restconf-app/pom.xml index 3d152f4fd..fec4a12e3 100644 --- a/lighty-examples/lighty-community-aaa-restconf-app/pom.xml +++ b/lighty-examples/lighty-community-aaa-restconf-app/pom.xml @@ -12,13 +12,13 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-app-parent io.lighty.kit.examples.controllers lighty-community-aaa-restconf-app - 21.1.0 + 21.2.0-SNAPSHOT jar diff --git a/lighty-examples/lighty-community-restconf-actions-app/pom.xml b/lighty-examples/lighty-community-restconf-actions-app/pom.xml index 6b3d7eb0e..0cd8f26af 100644 --- a/lighty-examples/lighty-community-restconf-actions-app/pom.xml +++ b/lighty-examples/lighty-community-restconf-actions-app/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-app-parent @@ -50,7 +50,7 @@ io.lighty.models.test example-data-center - 21.1.0 + 21.2.0-SNAPSHOT compile diff --git a/lighty-examples/lighty-community-restconf-netconf-app/pom.xml b/lighty-examples/lighty-community-restconf-netconf-app/pom.xml index 60dde40d3..316baf2e6 100644 --- a/lighty-examples/lighty-community-restconf-netconf-app/pom.xml +++ b/lighty-examples/lighty-community-restconf-netconf-app/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-app-parent diff --git a/lighty-examples/lighty-controller-springboot-netconf/pom.xml b/lighty-examples/lighty-controller-springboot-netconf/pom.xml index 215df4104..5f59c04ea 100644 --- a/lighty-examples/lighty-controller-springboot-netconf/pom.xml +++ b/lighty-examples/lighty-controller-springboot-netconf/pom.xml @@ -17,7 +17,7 @@ io.lighty.core lighty-controller-springboot - 21.1.0 + 21.2.0-SNAPSHOT jar Demo lighty.io project for SpringBoot @@ -33,14 +33,14 @@ io.lighty.core lighty-bom - 21.1.0 + 21.2.0-SNAPSHOT pom import io.lighty.core dependency-versions - 21.1.0 + 21.2.0-SNAPSHOT pom import @@ -137,8 +137,4 @@ - - - 21.1.0 - diff --git a/lighty-examples/lighty-guice-app/pom.xml b/lighty-examples/lighty-guice-app/pom.xml index 73998caca..3b64c58c3 100644 --- a/lighty-examples/lighty-guice-app/pom.xml +++ b/lighty-examples/lighty-guice-app/pom.xml @@ -11,7 +11,7 @@ lighty-app-parent io.lighty.core - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-app-parent/pom.xml diff --git a/lighty-examples/pom.xml b/lighty-examples/pom.xml index c4b4c344a..220ef6545 100644 --- a/lighty-examples/pom.xml +++ b/lighty-examples/pom.xml @@ -11,7 +11,7 @@ io.lighty.kit.examples example-applications-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml index ee5ac5d0f..d6d70bb2d 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-certificates-storage-model/pom.xml @@ -13,12 +13,12 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-certificates-storage-model - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml index 8a1f30c1c..c3d60990c 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-force-capabilities/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-force-capabilities - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml index 2588ffa37..8246aa66a 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-topology-model/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-topology-model - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml index 7b4ac4123..bdc9588d2 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnmi-yang-storage-model/pom.xml @@ -13,12 +13,12 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnmi-yang-storage-model - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml b/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml index ee4b98f6d..3314e631d 100644 --- a/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml +++ b/lighty-models/lighty-gnmi-models/lighty-gnoi-sonic-yang-model/pom.xml @@ -11,12 +11,12 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/pom.xml io.lighty.models.gnmi lighty-gnoi-sonic-yang-model - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-models/lighty-gnmi-models/pom.xml b/lighty-models/lighty-gnmi-models/pom.xml index a33a69d10..4fe581255 100644 --- a/lighty-models/lighty-gnmi-models/pom.xml +++ b/lighty-models/lighty-gnmi-models/pom.xml @@ -12,7 +12,7 @@ io.lighty.models.gnmi lighty-gnmi-models - 21.1.0 + 21.2.0-SNAPSHOT pom ${project.groupId}:${project.artifactId} diff --git a/lighty-models/openconfig-models/pom.xml b/lighty-models/openconfig-models/pom.xml index 3452c68cd..0e5eea3df 100644 --- a/lighty-models/openconfig-models/pom.xml +++ b/lighty-models/openconfig-models/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-binding-parent diff --git a/lighty-models/pom.xml b/lighty-models/pom.xml index d5b03868f..a75cebf4e 100644 --- a/lighty-models/pom.xml +++ b/lighty-models/pom.xml @@ -11,7 +11,7 @@ io.lighty.models lighty-models-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-models/test/lighty-example-data-center/pom.xml b/lighty-models/test/lighty-example-data-center/pom.xml index d5463fddd..140184606 100644 --- a/lighty-models/test/lighty-example-data-center/pom.xml +++ b/lighty-models/test/lighty-example-data-center/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/ diff --git a/lighty-models/test/lighty-test-models/pom.xml b/lighty-models/test/lighty-test-models/pom.xml index 90f275a75..e68385309 100644 --- a/lighty-models/test/lighty-test-models/pom.xml +++ b/lighty-models/test/lighty-test-models/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/ diff --git a/lighty-models/test/lighty-toaster/pom.xml b/lighty-models/test/lighty-toaster/pom.xml index 32cd6253d..523f947fa 100644 --- a/lighty-models/test/lighty-toaster/pom.xml +++ b/lighty-models/test/lighty-toaster/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-binding-parent/ diff --git a/lighty-models/test/pom.xml b/lighty-models/test/pom.xml index c1b061cfa..c2c4a3b27 100644 --- a/lighty-models/test/pom.xml +++ b/lighty-models/test/pom.xml @@ -11,7 +11,7 @@ io.lighty.models.test lighty-models-test-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-modules/integration-tests-aaa/pom.xml b/lighty-modules/integration-tests-aaa/pom.xml index 08ca736fd..fd96a89e5 100644 --- a/lighty-modules/integration-tests-aaa/pom.xml +++ b/lighty-modules/integration-tests-aaa/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-modules/integration-tests/pom.xml b/lighty-modules/integration-tests/pom.xml index efbf037a2..aef932d9a 100644 --- a/lighty-modules/integration-tests/pom.xml +++ b/lighty-modules/integration-tests/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml b/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml index 6b0a3ec5e..5e9be6117 100644 --- a/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml +++ b/lighty-modules/lighty-aaa-aggregator/lighty-aaa-encryption-service/pom.xml @@ -11,7 +11,7 @@ lighty-parent io.lighty.core - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml b/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml index 568dbae9a..a8a4bfaac 100644 --- a/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml +++ b/lighty-modules/lighty-aaa-aggregator/lighty-aaa/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-modules/lighty-aaa-aggregator/pom.xml b/lighty-modules/lighty-aaa-aggregator/pom.xml index 590126240..d88c0e983 100644 --- a/lighty-modules/lighty-aaa-aggregator/pom.xml +++ b/lighty-modules/lighty-aaa-aggregator/pom.xml @@ -11,7 +11,7 @@ io.lighty.modules lighty-aaa-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-modules/lighty-bgp/pom.xml b/lighty-modules/lighty-bgp/pom.xml index 559a8926d..13e97cdea 100644 --- a/lighty-modules/lighty-bgp/pom.xml +++ b/lighty-modules/lighty-bgp/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent/pom.xml io.lighty.modules lighty-bgp - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml index 1c3f496f7..40d0fb88f 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-commons/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-commons - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml index 5e5ef6079..9e81db478 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-connector/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml index e47ae1b8b..727571878 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-app-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-app-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-device-simulator - 21.1.0 + 21.2.0-SNAPSHOT io.lighty.modules.gnmi.simulatordevice.main.GnmiSimulatorApp diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml index d488567bf..dc52661cf 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-proto/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-proto - 21.1.0 + 21.2.0-SNAPSHOT 3.25.5 diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml index 96d4558b9..3e2e4762f 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-sb/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi.southbound lighty-gnmi-sb - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml b/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml index f423aa015..fa7b62dc4 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-test/pom.xml @@ -13,13 +13,13 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../../lighty-core/lighty-parent/pom.xml io.lighty.modules.gnmi lighty-gnmi-test - 21.1.0 + 21.2.0-SNAPSHOT true diff --git a/lighty-modules/lighty-gnmi/pom.xml b/lighty-modules/lighty-gnmi/pom.xml index 00e742c94..0345e1d8c 100644 --- a/lighty-modules/lighty-gnmi/pom.xml +++ b/lighty-modules/lighty-gnmi/pom.xml @@ -12,7 +12,7 @@ io.lighty.modules.gnmi lighty-gnmi - 21.1.0 + 21.2.0-SNAPSHOT pom diff --git a/lighty-modules/lighty-jetty-server/pom.xml b/lighty-modules/lighty-jetty-server/pom.xml index d8e0c0aa9..f8c506c33 100644 --- a/lighty-modules/lighty-jetty-server/pom.xml +++ b/lighty-modules/lighty-jetty-server/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-netconf-sb/pom.xml b/lighty-modules/lighty-netconf-sb/pom.xml index d43907fb6..539226eaf 100644 --- a/lighty-modules/lighty-netconf-sb/pom.xml +++ b/lighty-modules/lighty-netconf-sb/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-openapi/pom.xml b/lighty-modules/lighty-openapi/pom.xml index 51745c61e..b8c63b2b6 100644 --- a/lighty-modules/lighty-openapi/pom.xml +++ b/lighty-modules/lighty-openapi/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-modules/lighty-restconf-nb-community/pom.xml b/lighty-modules/lighty-restconf-nb-community/pom.xml index e9b02cf79..967846aa3 100644 --- a/lighty-modules/lighty-restconf-nb-community/pom.xml +++ b/lighty-modules/lighty-restconf-nb-community/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-modules/pom.xml b/lighty-modules/pom.xml index 5a984f7d9..f7739bcdc 100644 --- a/lighty-modules/pom.xml +++ b/lighty-modules/pom.xml @@ -11,7 +11,7 @@ io.lighty.modules lighty-modules-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom ${project.groupId}:${project.artifactId} diff --git a/lighty-resources/controller-application-assembly/pom.xml b/lighty-resources/controller-application-assembly/pom.xml index f62133605..4082b999d 100644 --- a/lighty-resources/controller-application-assembly/pom.xml +++ b/lighty-resources/controller-application-assembly/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-resources/log4j2-config/pom.xml b/lighty-resources/log4j2-config/pom.xml index dc5efab7b..3af06a341 100644 --- a/lighty-resources/log4j2-config/pom.xml +++ b/lighty-resources/log4j2-config/pom.xml @@ -11,7 +11,7 @@ io.lighty.resources log4j2-config - 21.1.0 + 21.2.0-SNAPSHOT jar ${project.groupId}:${project.artifactId} diff --git a/lighty-resources/pom.xml b/lighty-resources/pom.xml index 927be2b4d..63dd56c46 100644 --- a/lighty-resources/pom.xml +++ b/lighty-resources/pom.xml @@ -12,7 +12,7 @@ io.lighty.resources lighty-resources-aggregator pom - 21.1.0 + 21.2.0-SNAPSHOT true diff --git a/lighty-resources/singlenode-configuration/pom.xml b/lighty-resources/singlenode-configuration/pom.xml index b94086559..38c3c99b7 100644 --- a/lighty-resources/singlenode-configuration/pom.xml +++ b/lighty-resources/singlenode-configuration/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-resources/start-script/pom.xml b/lighty-resources/start-script/pom.xml index 296862eea..5bb40fb3e 100644 --- a/lighty-resources/start-script/pom.xml +++ b/lighty-resources/start-script/pom.xml @@ -12,7 +12,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../../lighty-core/lighty-parent diff --git a/lighty-tests-report/pom.xml b/lighty-tests-report/pom.xml index 226eb5b1c..36c5c3c17 100644 --- a/lighty-tests-report/pom.xml +++ b/lighty-tests-report/pom.xml @@ -11,7 +11,7 @@ io.lighty.core lighty-parent - 21.1.0 + 21.2.0-SNAPSHOT ../lighty-core/lighty-parent @@ -160,7 +160,7 @@ io.lighty.modules.gnmi lighty-gnmi-test - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/pom.xml b/pom.xml index 52f0dabb1..b00c5019a 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ io.lighty lighty-aggregator - 21.1.0 + 21.2.0-SNAPSHOT pom lighty From c0c3e7170ef50c5acc2a745ba9722e8eb93df165 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:44:16 +0100 Subject: [PATCH 6/8] Bump docs and scripts to 21.2.0-SNAPSHOT JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- .../lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh | 2 +- lighty-core/lighty-controller/README.md | 2 +- lighty-examples/README.md | 2 +- .../lighty-community-restconf-netconf-app/README.md | 10 +++++----- .../lighty-controller-springboot-netconf/README.md | 2 +- .../lighty-gnmi-community-restconf-app/README.md | 8 ++++---- lighty-models/README.md | 2 +- lighty-modules/lighty-bgp/README.md | 2 +- .../lighty-gnmi/lighty-gnmi-device-simulator/README.md | 2 +- lighty-modules/lighty-netconf-sb/README.md | 2 +- lighty-modules/lighty-restconf-nb-community/README.md | 2 +- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh b/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh index 2ab250392..e94c7a9c1 100755 --- a/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh +++ b/.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh @@ -44,7 +44,7 @@ ls -1 yangs #Run simulator for testing purpose printLine echo -e "-- Starting gNMI simulator device --\n" -java -jar ${GITHUB_WORKSPACE}/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.1.0.jar -c ./simulator/example_config.json > /dev/null 2>&1 & +java -jar ${GITHUB_WORKSPACE}/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.2.0-SNAPSHOT.jar -c ./simulator/example_config.json > /dev/null 2>&1 & #Add yangs into controller through REST rpc ./add_yangs_via_rpc.sh diff --git a/lighty-core/lighty-controller/README.md b/lighty-core/lighty-controller/README.md index 3011a22f5..9771a625b 100644 --- a/lighty-core/lighty-controller/README.md +++ b/lighty-core/lighty-controller/README.md @@ -17,7 +17,7 @@ To use Lighty controller in your project: io.lighty.core lighty-controller - 21.1.0 + 21.2.0-SNAPSHOT ``` diff --git a/lighty-examples/README.md b/lighty-examples/README.md index c36855c11..1f695caf8 100644 --- a/lighty-examples/README.md +++ b/lighty-examples/README.md @@ -15,7 +15,7 @@ ODL core services represent MD-SAL layer, controller, DataStore, global schema c io.lighty.core.parents lighty-dependency-artifacts - 21.1.0 + 21.2.0-SNAPSHOT pom import diff --git a/lighty-examples/lighty-community-restconf-netconf-app/README.md b/lighty-examples/lighty-community-restconf-netconf-app/README.md index 46c252ef0..f84fa82df 100644 --- a/lighty-examples/lighty-community-restconf-netconf-app/README.md +++ b/lighty-examples/lighty-community-restconf-netconf-app/README.md @@ -21,12 +21,12 @@ build the project: ```mvn clean install``` ### Start this demo example * build the project using ```mvn clean install``` * go to target directory ```cd lighty-examples/lighty-community-restconf-netconf-app/target``` -* unzip example application bundle ```unzip lighty-community-restconf-netconf-app-21.1.0-bin.zip``` -* go to unzipped application directory ```cd lighty-community-restconf-netconf-app-21.1.0``` -* start controller example controller application ```java -jar lighty-community-restconf-netconf-app-21.1.0.jar``` +* unzip example application bundle ```unzip lighty-community-restconf-netconf-app-21.2.0-SNAPSHOT-bin.zip``` +* go to unzipped application directory ```cd lighty-community-restconf-netconf-app-21.2.0-SNAPSHOT``` +* start controller example controller application ```java -jar lighty-community-restconf-netconf-app-21.2.0-SNAPSHOT.jar``` ### Test example application -Once example application has been started using command ```java -jar lighty-community-restconf-netconf-app-21.1.0.jar``` +Once example application has been started using command ```java -jar lighty-community-restconf-netconf-app-21.2.0-SNAPSHOT.jar``` RESTCONF web interface is available at URL ```http://localhost:8888/restconf/*``` ##### URLs to start with @@ -42,7 +42,7 @@ URLs for OpenApi: https://datatracker.ietf.org/doc/html/rfc8040 ### Use custom config files There are two separated config files: for NETCONF SBP single node and for cluster. -`java -jar lighty-community-restconf-netconf-app-21.1.0.jar /path/to/singleNodeConfig.json` +`java -jar lighty-community-restconf-netconf-app-21.2.0-SNAPSHOT.jar /path/to/singleNodeConfig.json` Example configuration for single node is [here](src/main/assembly/resources/sampleConfigSingleNode.json) diff --git a/lighty-examples/lighty-controller-springboot-netconf/README.md b/lighty-examples/lighty-controller-springboot-netconf/README.md index 26fd72239..fbc67be1b 100644 --- a/lighty-examples/lighty-controller-springboot-netconf/README.md +++ b/lighty-examples/lighty-controller-springboot-netconf/README.md @@ -46,7 +46,7 @@ mvn spring-boot:run or ``` -java -jar target/lighty-controller-springboot-21.1.0.jar +java -jar target/lighty-controller-springboot-21.2.0-SNAPSHOT.jar ``` or in any IDE, run main in diff --git a/lighty-examples/lighty-gnmi-community-restconf-app/README.md b/lighty-examples/lighty-gnmi-community-restconf-app/README.md index e5c57b1ef..538fd0121 100644 --- a/lighty-examples/lighty-gnmi-community-restconf-app/README.md +++ b/lighty-examples/lighty-gnmi-community-restconf-app/README.md @@ -43,22 +43,22 @@ cd lighty-examples/lighty-gnmi-community-restconf-app ### Start RCgNMI controller app Unzip lighty-rcgnmi-app to current location ``` -unzip ../../lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/target/lighty-rcgnmi-app-21.1.0-bin.zip +unzip ../../lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/target/lighty-rcgnmi-app-21.2.0-SNAPSHOT-bin.zip ``` Start application with pre-prepared configuration [example_config.json](example_config.json). ``` -java -jar lighty-rcgnmi-app-21.1.0/lighty-rcgnmi-app-21.1.0.jar -c example_config.json +java -jar lighty-rcgnmi-app-21.2.0-SNAPSHOT/lighty-rcgnmi-app-21.2.0-SNAPSHOT.jar -c example_config.json ``` ### Start lighty.io gNMI device simulator Unzip gNMI simulator app to current folder. ``` -unzip ../../lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.1.0-bin.zip +unzip ../../lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.2.0-SNAPSHOT-bin.zip ``` Start the application with pre-prepared configuration [simulator_config.json](simulator/simulator_config.json) ``` -java -jar lighty-gnmi-device-simulator-21.1.0/lighty-gnmi-device-simulator-21.1.0.jar -c simulator/simulator_config.json +java -jar lighty-gnmi-device-simulator-21.2.0-SNAPSHOT/lighty-gnmi-device-simulator-21.2.0-SNAPSHOT.jar -c simulator/simulator_config.json ``` ### Add client certificates to lighty.io gNMI keystore diff --git a/lighty-models/README.md b/lighty-models/README.md index 5dc0f7b68..8731c5c23 100644 --- a/lighty-models/README.md +++ b/lighty-models/README.md @@ -56,7 +56,7 @@ my-model/pom.xml io.lighty.core lighty-binding-parent - 21.1.0 + 21.2.0-SNAPSHOT diff --git a/lighty-modules/lighty-bgp/README.md b/lighty-modules/lighty-bgp/README.md index d619a0e00..c78121383 100644 --- a/lighty-modules/lighty-bgp/README.md +++ b/lighty-modules/lighty-bgp/README.md @@ -11,7 +11,7 @@ To use lighty BGP plugin in your project: io.lighty.modules lighty-bgp - 21.1.0 + 21.2.0-SNAPSHOT ``` * Initialize and start BgpModule instance: diff --git a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md index 2203d919e..6101c42e7 100644 --- a/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md +++ b/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md @@ -8,7 +8,7 @@ This simulator provides gNMI device driven by gNMI proto files, with datastore d io.lighty.modules.gnmi lighty-gnmi-device-simulator - 21.1.0 + 21.2.0-SNAPSHOT ``` diff --git a/lighty-modules/lighty-netconf-sb/README.md b/lighty-modules/lighty-netconf-sb/README.md index e3592cb75..22878190b 100644 --- a/lighty-modules/lighty-netconf-sb/README.md +++ b/lighty-modules/lighty-netconf-sb/README.md @@ -42,7 +42,7 @@ To use NETCONF in your project: io.lighty.modules lighty-netconf-sb - 21.1.0 + 21.2.0-SNAPSHOT ``` 2. Initialize and start an instance of NETCONF SBP in your code: diff --git a/lighty-modules/lighty-restconf-nb-community/README.md b/lighty-modules/lighty-restconf-nb-community/README.md index bd2dcbe28..36a1d4a33 100644 --- a/lighty-modules/lighty-restconf-nb-community/README.md +++ b/lighty-modules/lighty-restconf-nb-community/README.md @@ -12,7 +12,7 @@ To use RESTCONF in your project: io.lighty.modules lighty-restconf-nb-community - 21.1.0 + 21.2.0-SNAPSHOT ``` From 310e42fe09521107c4f20b683e0602b140f6cf37 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:44:16 +0100 Subject: [PATCH 7/8] Bump versions not managed by maven-release to 21.2.0-SNAPSHOT JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- .../lighty-rcgnmi-app-docker/pom.xml | 2 +- .../lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml index a5b8dc28f..8c53e37f0 100644 --- a/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml +++ b/lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app-docker/pom.xml @@ -14,7 +14,7 @@ io.lighty.applications.rcgnmi lighty-rcgnmi-app-docker - 21.1.0 + 21.2.0-SNAPSHOT lighty-rcgnmi diff --git a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml index 1b1797f2a..4454fcdba 100644 --- a/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml +++ b/lighty-applications/lighty-rnc-app-aggregator/lighty-rnc-app-docker/pom.xml @@ -11,7 +11,7 @@ io.lighty.applications.rnc lighty-rnc-app-docker - 21.1.0 + 21.2.0-SNAPSHOT lighty-rnc From 24fa6f40c0610bdaab97879f6d2823e897ce085b Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 6 Nov 2024 13:44:16 +0100 Subject: [PATCH 8/8] Set scm.tag to HEAD JIRA: LIGHTY-337 Signed-off-by: tobias.pobocik --- lighty-core/dependency-versions/pom.xml | 2 +- lighty-core/lighty-bom/pom.xml | 2 +- lighty-core/lighty-minimal-parent/pom.xml | 2 +- lighty-resources/log4j2-config/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lighty-core/dependency-versions/pom.xml b/lighty-core/dependency-versions/pom.xml index 977ac4958..dfa067b4e 100644 --- a/lighty-core/dependency-versions/pom.xml +++ b/lighty-core/dependency-versions/pom.xml @@ -273,7 +273,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - 21.1.0 + HEAD diff --git a/lighty-core/lighty-bom/pom.xml b/lighty-core/lighty-bom/pom.xml index 051f95db1..6521df51f 100644 --- a/lighty-core/lighty-bom/pom.xml +++ b/lighty-core/lighty-bom/pom.xml @@ -291,7 +291,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - 21.1.0 + HEAD diff --git a/lighty-core/lighty-minimal-parent/pom.xml b/lighty-core/lighty-minimal-parent/pom.xml index 079614939..69bae9a2f 100644 --- a/lighty-core/lighty-minimal-parent/pom.xml +++ b/lighty-core/lighty-minimal-parent/pom.xml @@ -103,7 +103,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - 21.1.0 + HEAD diff --git a/lighty-resources/log4j2-config/pom.xml b/lighty-resources/log4j2-config/pom.xml index 3af06a341..23b824356 100644 --- a/lighty-resources/log4j2-config/pom.xml +++ b/lighty-resources/log4j2-config/pom.xml @@ -59,7 +59,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - 21.1.0 + HEAD diff --git a/pom.xml b/pom.xml index b00c5019a..dfd386a89 100644 --- a/pom.xml +++ b/pom.xml @@ -91,7 +91,7 @@ scm:git:https://github.com/PANTHEONtech/lighty.git scm:git:https://github.com/PANTHEONtech/lighty.git https://github.com/PANTHEONtech/lighty - 21.1.0 + HEAD