Skip to content

Commit

Permalink
This version contains a valid pom file and fixes the issue #94.
Browse files Browse the repository at this point in the history
  • Loading branch information
kochedykov committed Mar 16, 2024
1 parent 71cb0b0 commit 8e0fae1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.number
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Tue Feb 06 22:10:56 YEKT 2024
build.number=9
#Tue Mar 16 15:39:35 YEKT 2024
build.number=10
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.intelligt.modbus</groupId>
<artifactId>jlibmodbus</artifactId>
<version>1.2.9.9</version>
<version>1.2.9.10</version>
<name>JLibModbus</name>
<description>Implementation of the Modbus protocol in Java language</description>
<packaging>jar</packaging>
Expand Down Expand Up @@ -127,6 +127,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion src/com/intelligt/modbus/jlibmodbus/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
class Version {

private static final String version = "1.2.9.9";
private static final String version = "1.2.9.10";
/**
* returns the current version of the JLibModbus library
*
Expand Down

0 comments on commit 8e0fae1

Please sign in to comment.