Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 136c8c9

Browse files
committed
Merge branch 'hotfix/1.5.1'
2 parents b0936a3 + b9efe35 commit 136c8c9

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

artifactory.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if (project.hasProperty('netifiArtifactoryUsername') && project.hasProperty('net
2020
plugins.withId('com.jfrog.artifactory') {
2121
artifactory {
2222
publish {
23-
contextUrl = 'artifactory.netifiinc.com'
23+
contextUrl = 'https://artifactory.netifiinc.com/artifactory'
2424

2525
repository {
2626
repoKey = version.contains('SNAPSHOT') ? 'libs-snapshot-local' : 'libs-release-local'

build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,19 @@ plugins {
2323

2424
buildScan { licenseAgreementUrl = 'https://gradle.com/terms-of-service'; licenseAgree = 'yes' }
2525

26-
apply from: "artifactory.gradle"
27-
apply from: "bintray.gradle"
28-
2926
subprojects {
3027
apply plugin: 'io.spring.dependency-management'
3128
apply plugin: 'com.jfrog.bintray'
29+
apply plugin: "com.jfrog.artifactory"
3230
apply plugin: 'java'
3331
apply plugin: 'idea'
3432
apply plugin: 'com.github.sherter.google-java-format'
3533
apply plugin: 'maven'
3634
apply plugin: 'maven-publish'
3735

3836
ext['reactor-bom.version'] = 'Californium-SR1'
39-
ext['rsocket.version'] = '0.11.9'
40-
ext['rsocket-rpc.version'] = '0.2.4'
37+
ext['rsocket.version'] = '0.11.12'
38+
ext['rsocket-rpc.version'] = '0.2.6'
4139

4240
ext['jackson.version'] = '2.9.7'
4341
ext['jackson-protobuf.version'] = '0.9.10-jackson2.9-proto3'
@@ -67,6 +65,8 @@ subprojects {
6765
jcenter()
6866
maven { url 'http://repo.spring.io/libs-snapshot' }
6967
maven { url 'https://oss.jfrog.org/oss-snapshot-local' }
68+
maven { url 'https://oss.jfrog.org/oss-release-local' }
69+
7070
}
7171

7272
googleJavaFormat {
@@ -199,4 +199,7 @@ subprojects {
199199
}
200200
}
201201
}
202-
}
202+
}
203+
204+
apply from: "artifactory.gradle"
205+
apply from: "bintray.gradle"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=io.netifi.proteus
2-
version=1.5.0
2+
version=1.5.1

proteus-client/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ dependencies {
99
compile project (':proteus-frames')
1010
compile 'com.typesafe:config'
1111
compile 'com.google.guava:guava'
12+
compile 'io.rsocket:rsocket-core'
1213
compile 'io.rsocket.rpc:rsocket-rpc-core'
13-
compile "io.netty:netty-tcnative:2.0.18.Final:linux-x86_64"
14+
compile 'io.rsocket:rsocket-transport-netty'
15+
compile 'io.netty:netty-tcnative:2.0.18.Final:linux-x86_64'
1416

1517
testProtobuf 'io.rsocket.rpc:rsocket-rpc-protobuf-idl'
1618
testCompile project(':proteus-tracing-openzipkin')

0 commit comments

Comments
 (0)