Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,20 @@ apply plugin: 'nebula.rxjava-project'
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6

def rsVersion = '1.0.1-RC2'

@ghost ghost Aug 7, 2017

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@akarnokd is it possible to change name of your branch, it's name is now a bit misleading ;-)

I mean: just remove _RC1, as there is already -RC2 and I am pretty sure that in this month they would release a new version.


dependencies {
signature 'org.codehaus.mojo.signature:java16:1.1@signature'

compile 'org.reactivestreams:reactive-streams:1.0.0'
compile "org.reactivestreams:reactive-streams:$rsVersion"

testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.1.0'

perfCompile 'org.openjdk.jmh:jmh-core:1.16'
perfCompile 'org.openjdk.jmh:jmh-generator-annprocess:1.16'

testCompile 'org.reactivestreams:reactive-streams-tck:1.0.0'
testCompile "org.reactivestreams:reactive-streams-tck:$rsVersion"
testCompile group: 'org.testng', name: 'testng', version: '6.9.10'
}

Expand Down