File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11Change Log
22==============
33
4+ ### 0.9.4 ###
5+ Rebased java namespace to org.totalgrid.reef.protocol.dnp3
6+ Java SO static loading can be overriden using system property "org.totalgrid.reef.protocol.dnp3.nostaticload"
7+ Fixed a major bug in slave unsolcited mode on event buffer overflow.
8+
9+
410### 0.9.3 ###
511- Fixed parsing bug in testset that caused erroneous pulse repititions
612- Fixed a bug in DataPoll.cpp that caused stack to crash if it eas configured with an empty exception scan
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ using namespace apl::dnp;
1111
1212%pragma(java) jniclasscode=%{
1313 static {
14- if (System.getProperty (" reef.protocol.dnp3.nostaticload" ) == null) System.loadLibrary (" dnp3java" );
14+ if (System.getProperty (" org.totalgrid. reef.protocol.dnp3.nostaticload" ) == null) System.loadLibrary (" dnp3java" );
1515 }
1616%}
1717
Original file line number Diff line number Diff line change 11<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
22 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
4- <groupId >reef.protocol.dnp3</groupId >
4+ <groupId >org.totalgrid. reef.protocol.dnp3</groupId >
55 <artifactId >dnp3java</artifactId >
66 <packaging >jar</packaging >
7- <version >0.9.4-SNAPSHOT </version >
7+ <version >0.9.4</version >
88 <distributionManagement >
99 <repository >
1010 <id >gec-release</id >
Original file line number Diff line number Diff line change 88:libs => $PLATFORM_LIBS + Boost ::get_static_libs + $WINSOCK_LIBS,
99:project_libs => [ :dnp3 , :apl ] ,
1010:plugins => [ 'swigjava' ] , #swigjava specific options
11- :java_package => 'reef.protocol.dnp3' ,
12- :java_outdir => 'src/main/java/reef/protocol/dnp3'
11+ :java_package => 'org.totalgrid. reef.protocol.dnp3' ,
12+ :java_outdir => 'src/main/java/org/totalgrid/ reef/protocol/dnp3'
1313}
1414
You can’t perform that action at this time.
0 commit comments