forked from rsocket/rsocket-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (25 loc) · 870 Bytes
/
build.gradle
File metadata and controls
32 lines (25 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
buildscript {
repositories {
jcenter()
}
dependencies { classpath 'io.reactivesocket:gradle-nebula-plugin-reactivesocket:1.0.1' }
}
description = 'ReactiveSocket: stream oriented messaging passing with Reactive Stream semantics.'
apply plugin: 'reactivesocket-project'
apply plugin: 'java'
dependencies {
compile 'io.reactivex:rxjava:1.0.13'
compile 'io.reactivex:rxjava-reactive-streams:1.0.1'
compile 'org.reactivestreams:reactive-streams:1.0.0.final'
compile 'uk.co.real-logic:Agrona:0.4.2'
testCompile 'junit:junit-dep:4.10'
testCompile 'org.mockito:mockito-core:1.8.5'
}
// support for snapshot/final releases via versioned branch names like 1.x
nebulaRelease {
addReleaseBranchPattern(/\d+\.\d+\.\d+/)
addReleaseBranchPattern('HEAD')
}
if (project.hasProperty('release.useLastTag')) {
tasks.prepare.enabled = false
}