File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Further details on the background and usage of SBE can be found on the
1111An XSD for SBE specs can be found
1212[ here] ( https://github.com/real-logic/simple-binary-encoding/blob/master/sbe-tool/src/main/resources/fpl/SimpleBinary1-0.xsd ) 
1313
14+ For the latest version information and changes see the [ Change Log] ( https://github.com/real-logic/simple-binary-encoding/wiki/Change-Log ) . 
15+ 
1416This SBE implementation is designed with work very efficiently with the [ Aeron] ( https://github.com/real-logic/Aeron )  
1517messaging system for low-latency and high-throughput communications. The generated codec stubs can wrap the Aeron buffers
1618directly for zero copy semantics. 
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ plugins {
2121defaultTasks ' clean' ' build' ' shadowJar' ' install' 
2222
2323def  sbeGroup =  ' uk.co.real-logic' 
24- def  sbeVersion =  ' 1.3-RC3-SNAPSHOT' 
24+ def  sbeVersion =  ' 1.3.1 -RC3-SNAPSHOT' 
2525
2626group =  sbeGroup
2727version =  sbeVersion
@@ -172,7 +172,7 @@ def validationXsdPath = project(':sbe-tool').projectDir.toString() + '/src/main/
172172
173173project(' :sbe-tool' 
174174 dependencies {
175-  compile ' uk.co.real-logic:Agrona:0.4.9-SNAPSHOT ' 
175+  compile ' uk.co.real-logic:Agrona:0.4.9' 
176176
177177 testCompile files(' build/classes/generated' 
178178 }
@@ -353,6 +353,21 @@ project(':sbe-benchmarks') {
353353 classifier =  ' benchmarks' 
354354 manifest. attributes(' Main-Class' ' org.openjdk.jmh.Main' 
355355 }
356+ 
357+  task sourcesJar(type : Jar ) {
358+  classifier =  ' sources' 
359+  from sourceSets. main. allSource
360+  }
361+ 
362+  task javadocJar(type : Jar , dependsOn : javadoc) {
363+  classifier =  ' javadoc' 
364+  from javadoc. destinationDir
365+  }
366+ 
367+  artifacts {
368+  archives sourcesJar
369+  archives javadocJar
370+  }
356371}
357372
358373task(generateJavaIrCodecs, type : JavaExec ) {
                         You can’t perform that action at this time. 
           
                  
0 commit comments