Skip to content

Commit 74e7052

Browse files
committed
2 parents 9e7c349 + c72a91f commit 74e7052

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Further details on the background and usage of SBE can be found on the
1111
An 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+
1416
This SBE implementation is designed with work very efficiently with the [Aeron](https://github.com/real-logic/Aeron)
1517
messaging system for low-latency and high-throughput communications. The generated codec stubs can wrap the Aeron buffers
1618
directly for zero copy semantics.

build.gradle

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
defaultTasks 'clean', 'build', 'shadowJar', 'install'
2222

2323
def sbeGroup = 'uk.co.real-logic'
24-
def sbeVersion = '1.3-RC3-SNAPSHOT'
24+
def sbeVersion = '1.3.1-RC3-SNAPSHOT'
2525

2626
group = sbeGroup
2727
version = sbeVersion
@@ -172,7 +172,7 @@ def validationXsdPath = project(':sbe-tool').projectDir.toString() + '/src/main/
172172

173173
project(':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

358373
task(generateJavaIrCodecs, type: JavaExec) {

0 commit comments

Comments
 (0)