Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HTTP proxy, multiple connections to client, clustering to server #11

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Upgrade to vert.x 3.5.1
  • Loading branch information
seanf committed Mar 7, 2018
commit 15c54954ea48fc5aeeed357f30992c9fefd15933
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
buildscript {
ext.kotlin_version = '1.2.30'
ext.vertx_version = '3.5.1'
repositories {
mavenCentral()
}
Expand Down Expand Up @@ -28,10 +29,10 @@ subprojects {

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile 'io.vertx:vertx-core:3.5.0'
compile 'io.vertx:vertx-web:3.5.0'
// testCompile 'io.vertx:vertx-unit:3.5.0'
compile 'io.vertx:vertx-lang-kotlin-coroutines:3.5.0'
compile "io.vertx:vertx-core:$vertx_version"
compile "io.vertx:vertx-web:$vertx_version"
// testCompile "io.vertx:vertx-unit:$vertx_version"
compile "io.vertx:vertx-lang-kotlin-coroutines:$vertx_version"
testCompile 'junit:junit:4.12'
testCompile 'net.wuerl.kotlin:assertj-core-kotlin:0.2.1'
}
Expand Down
10 changes: 6 additions & 4 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,23 @@ sourceSets {

dependencies {
compile project(':common')
compile 'com.xenomachina:kotlin-argparser:2.0.4'
compile "io.vertx:vertx-shell:$vertx_version"
testCompile project(':server')
testCompile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.18'
testCompile 'org.asynchttpclient:async-http-client:2.1.0-alpha20'
testRuntime 'org.slf4j:slf4j-simple:1.7.25'
testCompile 'org.mock-server:mockserver-netty:3.11'
// for FakeClusterManager: https://github.com/eclipse/vert.x/issues/2191
testCompile 'io.vertx:vertx-core:3.5.0:tests'
testCompile "io.vertx:vertx-core:$vertx_version:tests"
// Enabling this should cause the IDE to download the source for
// FakeClusterManager. (You'll still have to select Choose Sources on
// FakeClusterManager.class, then browse to the test-sources jar in a
// nearby directory.)
// testSourcesCompile 'io.vertx:vertx-core:3.5.0:test-sources'
// testSourcesCompile "io.vertx:vertx-core:$vertx_version:test-sources"

// compile 'io.vertx:vertx-hazelcast:3.5.0'
// compile 'io.vertx:vertx-infinispan:3.5.0'
// compile "io.vertx:vertx-hazelcast:$vertx_version"
// compile "io.vertx:vertx-infinispan:$vertx_version"
// // http://vertx.io/docs/vertx-infinispan/java/#_configuring_for_kubernetes_or_openshift_3
// compile 'org.infinispan:infinispan-cloud:9.1.2.Final'
// compile 'org.jgroups.kubernetes:jgroups-kubernetes:1.0.3.Final'
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
dependencies {
compile project(':common')
compile 'de.svenkubiak:jBCrypt:0.4.1'
runtime 'io.vertx:vertx-infinispan:3.5.0'
runtime "io.vertx:vertx-infinispan:$vertx_version"
// // http://vertx.io/docs/vertx-infinispan/java/#_configuring_for_kubernetes_or_openshift_3
runtime 'org.infinispan:infinispan-cloud:9.1.2.Final'
}
Expand Down