File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed 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-RC3' 
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