Skip to content

Commit

Permalink
llrp/1.0.0.7-0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pquiring committed Jun 9, 2024
1 parent 0f66d76 commit 0e4f60b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
26 changes: 14 additions & 12 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,20 @@
<property name="home" location="../.."/>
<property name="src" location="src"/>
<property name="build" location="classes"/>
<property name="version" value="1.0.0.7-0.2"/>
<property name="version" value="1.0.0.7-0.3"/>

<fileset dir="." id="classpath">
<include name="jargs.jar"/>
<include name="mina-core.jar"/>
<include name="jdom.jar"/>
<include name="jargs.jar"/>
<include name="log4j-core.jar"/>
<include name="log4j-api.jar"/>
<include name="log4j-1.2-api.jar"/>
<include name="slf4j-api.jar"/>
<include name="slf4j-reload4j.jar"/>
<include name="xerces.jar"/>
</fileset>

<import file="${home}/base.xml"/>

Expand All @@ -17,17 +30,6 @@
<mkdir dir="${build}"/>
<javac srcdir="${src}" destdir="${build}" deprecation="true" target="${jdkver}" source="${jdkver}" debug="true" includeantruntime="false">
<classpath path="${classpath}"/>
<classpath>
<fileset dir="." includes="mina-core.jar"/>
<fileset dir="." includes="jdom.jar"/>
<fileset dir="." includes="jargs.jar"/>
<fileset dir="." includes="log4j-core.jar"/>
<fileset dir="." includes="log4j-api.jar"/>
<fileset dir="." includes="log4j-1.2-api.jar"/>
<fileset dir="." includes="slf4j-api.jar"/>
<fileset dir="." includes="slf4j-reload4j.jar"/>
<fileset dir="." includes="xerces.jar"/>
</classpath>
</javac>
</target>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.github.pquiring</groupId>
<artifactId>llrp</artifactId>
<version>1.0.0.7-0.2</version>
<version>1.0.0.7-0.3</version>

<scm>
<url>https://github.com/pquiring/llrp</url>
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Building:
Major changes:
-0.1 : upgraded to mina 2.x
-0.2 : replaced minx 2.x deprecated methods
-0.3 : upgrade to slf/2.x and fix connection issues

Notes:
- JavaForce is only used for build scripts to download dependancies and build deployment artifacts
4 changes: 4 additions & 0 deletions whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024/6/8 : 0.3
- upgraded to slf/2.x
- fixed connection issues

2023/5/21 : 0.2
- replaced mina 2.x deprecated methods with proper alternatives
- add LLRPConnector.setReconnect(boolean) to control auto reconnecting
Expand Down

0 comments on commit 0e4f60b

Please sign in to comment.