Skip to content

Commit 6b3b267

Browse files
committed
provides final spring messaging integration
1 parent 3698358 commit 6b3b267

File tree

60 files changed

+2260
-708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2260
-708
lines changed

build.gradle

+3-10
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,16 @@ buildscript {
55
}
66

77
plugins {
8-
id 'com.gradle.build-scan' version '2.0.2' // declare before any other plugin
98
id 'com.google.osdetector' version '1.4.0'
109
id "com.github.hierynomus.license" version '0.15.0'
1110
id 'com.github.sherter.google-java-format' version '0.8' apply false
12-
id 'me.champeau.gradle.jmh' version '0.4.7' apply false
11+
id 'me.champeau.gradle.jmh' version '0.5.0' apply false
1312
id 'io.morethan.jmhreport' version '0.6.2.1' apply false
1413
id 'io.spring.dependency-management' version '1.0.8.RELEASE' apply false
1514
id 'com.google.protobuf' version '0.8.8' apply false
1615
id 'com.palantir.git-version' version '0.12.0-rc2'
1716
}
1817

19-
//buildScan { licenseAgreementUrl = 'https://gradle.com/terms-of-service'; licenseAgree = 'yes' }
20-
buildScan {
21-
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
22-
termsOfServiceAgree = 'yes'
23-
}
24-
2518
// TODO: make this a Gradle plugin someday
2619
def details = versionDetails()
2720
def versionSuffix = ""
@@ -65,9 +58,9 @@ subprojects {
6558
targetCompatibility = 1.8
6659

6760
repositories {
68-
69-
mavenCentral()
7061
maven { url 'https://oss.jfrog.org/oss-snapshot-local' }
62+
mavenCentral()
63+
jcenter()
7164
maven {
7265
url 'https://nexus.netifi.com/repository/jcenter/'
7366
credentials {

dependency-management.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply plugin: 'io.spring.dependency-management'
22

3+
ext["rsocket.version"] = rsocketVersion
4+
35
dependencyManagement {
46
imports {
57
mavenBom "io.rsocket:rsocket-bom:${rsocketVersion}"
@@ -11,6 +13,7 @@ dependencyManagement {
1113
mavenBom "software.amazon.awssdk:bom:${awssdkVersion}"
1214
mavenBom "io.rsocket:rsocket-bom:${rsocketVersion}"
1315
mavenBom "com.google.protobuf:protobuf-bom:${protobufVersion}"
16+
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootDependenciesVersion}"
1417
}
1518

1619
dependencies {

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ postgresqlVersion=42.2.5
2828
protobufVersion=3.7.1
2929
reactorBomVersion=Dysprosium-RELEASE
3030
roaringbitmapVersion=0.7.42
31-
rsocketRpcVersion=0.3.0-feature-prioritization-SNAPSHOT
31+
rsocketRpcVersion=0.3.0-feature-routing-SNAPSHOT
3232
rsocketVersion=1.0.0-RC6-bugfix-prioritization-SNAPSHOT
3333
rxjava2JdbcVersion=0.2.4
3434
slf4jVersion=1.7.25

gradle/wrapper/gradle-wrapper.jar

426 Bytes
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
#!/usr/bin/env sh
22

3+
#
4+
# Copyright 2015 the original author or authors.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# https://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
319
##############################################################################
420
##
521
## Gradle start up script for UN*X
@@ -28,7 +44,7 @@ APP_NAME="Gradle"
2844
APP_BASE_NAME=`basename "$0"`
2945

3046
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS='"-Xmx64m"'
47+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
3248

3349
# Use the maximum available, or set MAX_FD != -1 to use that value.
3450
MAX_FD="maximum"
@@ -109,8 +125,8 @@ if $darwin; then
109125
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110126
fi
111127

112-
# For Cygwin, switch paths to Windows format before running java
113-
if $cygwin ; then
128+
# For Cygwin or MSYS, switch paths to Windows format before running java
129+
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
114130
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115131
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116132
JAVACMD=`cygpath --unix "$JAVACMD"`

gradlew.bat

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
@rem
2+
@rem Copyright 2015 the original author or authors.
3+
@rem
4+
@rem Licensed under the Apache License, Version 2.0 (the "License");
5+
@rem you may not use this file except in compliance with the License.
6+
@rem You may obtain a copy of the License at
7+
@rem
8+
@rem https://www.apache.org/licenses/LICENSE-2.0
9+
@rem
10+
@rem Unless required by applicable law or agreed to in writing, software
11+
@rem distributed under the License is distributed on an "AS IS" BASIS,
12+
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
@rem See the License for the specific language governing permissions and
14+
@rem limitations under the License.
15+
@rem
16+
117
@if "%DEBUG%" == "" @echo off
218
@rem ##########################################################################
319
@rem
@@ -14,7 +30,7 @@ set APP_BASE_NAME=%~n0
1430
set APP_HOME=%DIRNAME%
1531

1632
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS="-Xmx64m"
33+
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
1834

1935
@rem Find java.exe
2036
if defined JAVA_HOME goto findJavaFromJavaHome

0 commit comments

Comments
 (0)