Skip to content

Commit 7362871

Browse files
committed
1.3-RC3 release
1 parent f0642b5 commit 7362871

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

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-RC3'
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)