Skip to content

Commit e06e2ee

Browse files
authored
Merge pull request #276 from Tobianas/22.0.0
Release 22.0.0
2 parents ba27100 + f8b9b8e commit e06e2ee

File tree

34 files changed

+58
-59
lines changed

34 files changed

+58
-59
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG VERSION="22.0.0-SNAPSHOT"
1+
ARG VERSION="22.0.0"
22

33
FROM maven:3.9-eclipse-temurin-21-alpine as build
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mvn clean install
1717
```
1818
* The NETCONF Device Library build is located at:
1919

20-
`lighty-netconf-device\target\lighty-netconf-device-22.0.0-SNAPSHOT.jar`
20+
`lighty-netconf-device\target\lighty-netconf-device-22.0.0.jar`
2121

2222
* The build & run procedures for the example devices are described in each device's README.
2323

examples/devices/lighty-actions-device/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ Build root project - for more details check: [README](../../../README.md)
2828
* extract binary distribution in target directory
2929
* run jar file from zip with default parameter
3030
```
31-
java -jar lighty-action-device-22.0.0-SNAPSHOT.jar
31+
java -jar lighty-action-device-22.0.0.jar
3232
```
3333
To run device on specific port, add port number as an argument
3434
* run device on specific port `12345` (any available port)
3535
```
36-
java -jar lighty-action-device-22.0.0-SNAPSHOT.jar 12345
36+
java -jar lighty-action-device-22.0.0.jar 12345
3737
```
3838

3939
### Connect to device via SSH

examples/devices/lighty-actions-device/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>io.lighty.netconf.device.examples</groupId>
1616
<artifactId>examples-parent</artifactId>
17-
<version>22.0.0-SNAPSHOT</version>
17+
<version>22.0.0</version>
1818
<relativePath>../../parents/examples-parent/pom.xml</relativePath>
1919
</parent>
2020

examples/devices/lighty-actions-device/src/assembly/resources/start-device.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# When run without a parameter a default port 17830 will be used.
88

9-
CLASSPATH=lighty-action-device-22.0.0-SNAPSHOT.jar
9+
CLASSPATH=lighty-action-device-22.0.0.jar
1010

1111
for jar in `ls -1 lib/`;
1212
do

examples/devices/lighty-actions-device/src/test/java/io/lighty/netconf/device/action/ActionDeviceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import org.opendaylight.netconf.client.SimpleNetconfClientSessionListener;
3333
import org.opendaylight.netconf.client.conf.NetconfClientConfiguration;
3434
import org.opendaylight.netconf.client.conf.NetconfClientConfigurationBuilder;
35-
import org.opendaylight.netconf.common.impl.DefaultNetconfTimer;
35+
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
3636
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
3737
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
3838
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;

examples/devices/lighty-network-topology-device/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Build root project - for more details check: [README](../../../README.md)
1919
* extract binary distribution in target directory
2020
* run jar file from zip with default parameter
2121
```
22-
java -jar lighty-network-topology-device-22.0.0-SNAPSHOT.jar
22+
java -jar lighty-network-topology-device-22.0.0.jar
2323
```
2424
* to run device on specific port it is necessary to add port number as an argument
2525
* run device on specific port `12345` (any available port)
2626
```
27-
java -jar lighty-network-topology-device-22.0.0-SNAPSHOT.jar 12345
27+
java -jar lighty-network-topology-device-22.0.0.jar 12345
2828
```
2929

3030
### Connect to device via SSH
@@ -650,4 +650,4 @@ The directory **must** contain the following files:<br>
650650
When -i argument is not set, persistence is disabled by default: <br>
651651

652652
Example Startup Command:
653-
`java -jar lighty-network-topology-device-22.0.0-SNAPSHOT.jar -i path/to/persistence/directory -o path/to/persistence/directory`
653+
`java -jar lighty-network-topology-device-22.0.0.jar -i path/to/persistence/directory -o path/to/persistence/directory`

examples/devices/lighty-network-topology-device/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>io.lighty.netconf.device.examples</groupId>
1616
<artifactId>examples-parent</artifactId>
17-
<version>22.0.0-SNAPSHOT</version>
17+
<version>22.0.0</version>
1818
<relativePath>../../parents/examples-parent/pom.xml</relativePath>
1919
</parent>
2020

examples/devices/lighty-network-topology-device/src/assembly/resources/start-device.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# When run without a parameter a default port 17830 will be used.
88

9-
CLASSPATH=lighty-network-topology-device-22.0.0-SNAPSHOT.jar
9+
CLASSPATH=lighty-network-topology-device-22.0.0.jar
1010

1111
for jar in `ls -1 lib/`;
1212
do

examples/devices/lighty-network-topology-device/src/test/java/io/lighty/netconf/device/topology/DeviceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.opendaylight.netconf.client.conf.NetconfClientConfiguration;
3434
import org.opendaylight.netconf.client.conf.NetconfClientConfiguration.NetconfClientProtocol;
3535
import org.opendaylight.netconf.client.conf.NetconfClientConfigurationBuilder;
36-
import org.opendaylight.netconf.common.impl.DefaultNetconfTimer;
36+
import org.opendaylight.netconf.common.di.DefaultNetconfTimer;
3737
import org.opendaylight.netconf.transport.api.UnsupportedConfigurationException;
3838
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.crypto.types.rev241010.password.grouping.password.type.CleartextPasswordBuilder;
3939
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;

0 commit comments

Comments
 (0)