Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Nov 23, 2014
1 parent 09aa2ba commit c53746d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion reactive-lab-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ dependencies {
testCompile 'org.mockito:mockito-core:1.8.5'
}

task start(type:JavaExec) {
task startServices(type:JavaExec) {
main = "io.reactivex.lab.services.StartMiddleTierServices"
classpath = sourceSets.main.runtimeClasspath
}

task startDiscovery(type:JavaExec) {
main = "io.reactivex.lab.services.StartEurekaServer"
classpath = sourceSets.main.runtimeClasspath
}

0 comments on commit c53746d

Please sign in to comment.