Skip to content

Commit ca0c07e

Browse files
Copilotkevinherron
andcommitted
Replace hardcoded versions with properties in pom.xml files
Co-authored-by: kevinherron <[email protected]>
1 parent f733dc7 commit ca0c07e

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
lines changed

opc-ua-sdk/codec-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<name>Milo :: Codec JSON</name>
2424

2525
<artifactId>milo-codec-json</artifactId>
26-
<version>0.1-SNAPSHOT</version>
26+
<version>${incubating.version}</version>
2727

2828
<properties>
2929
<javaModuleName>org.eclipse.milo.opcua.sdk.codec.json</javaModuleName>

opc-ua-sdk/dtd-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>org.jspecify</groupId>
6666
<artifactId>jspecify</artifactId>
67-
<version>1.0.0</version>
67+
<version>${jspecify.version}</version>
6868
</dependency>
6969
</dependencies>
7070

opc-ua-sdk/dtd-reader/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.jspecify</groupId>
4444
<artifactId>jspecify</artifactId>
45-
<version>1.0.0</version>
45+
<version>${jspecify.version}</version>
4646
</dependency>
4747

4848
<dependency>

opc-ua-sdk/sdk-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.jspecify</groupId>
4444
<artifactId>jspecify</artifactId>
45-
<version>1.0.0</version>
45+
<version>${jspecify.version}</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.junit.jupiter</groupId>

opc-ua-stack/encoding-xml/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>org.xmlunit</groupId>
6868
<artifactId>xmlunit-core</artifactId>
69-
<version>2.10.0</version>
69+
<version>${xmlunit.version}</version>
7070
<scope>test</scope>
7171
</dependency>
7272
<dependency>

opc-ua-stack/transport-https/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<name>Milo :: Transport HTTPS</name>
2424

2525
<artifactId>milo-transport-https</artifactId>
26-
<version>0.1-SNAPSHOT</version>
26+
<version>${incubating.version}</version>
2727

2828
<properties>
2929
<javaModuleName>org.eclipse.milo.opcua.stack.transport.https</javaModuleName>

opc-ua-stack/transport-websocket/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<name>Milo :: Transport Websocket</name>
2424

2525
<artifactId>milo-transport-websocket</artifactId>
26-
<version>0.1-SNAPSHOT</version>
26+
<version>${incubating.version}</version>
2727

2828
<properties>
2929
<javaModuleName>org.eclipse.milo.opcua.stack.transport.websocket</javaModuleName>

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
<netty-channel-fsm.version>1.0.2</netty-channel-fsm.version>
7070
<slf4j.version>2.0.17</slf4j.version>
7171
<jspecify.version>1.0.0</jspecify.version>
72+
<xmlunit.version>2.10.0</xmlunit.version>
73+
74+
<!-- Incubating Module Version -->
75+
<incubating.version>0.1-SNAPSHOT</incubating.version>
7276

7377
<!-- Plugin Dependency Versions -->
7478
<central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version>

0 commit comments

Comments
 (0)