Skip to content

Commit

Permalink
provides final spring messaging integration
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegDokuka committed Jan 7, 2020
1 parent 3698358 commit 6b3b267
Show file tree
Hide file tree
Showing 60 changed files with 2,260 additions and 708 deletions.
13 changes: 3 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,16 @@ buildscript {
}

plugins {
id 'com.gradle.build-scan' version '2.0.2' // declare before any other plugin
id 'com.google.osdetector' version '1.4.0'
id "com.github.hierynomus.license" version '0.15.0'
id 'com.github.sherter.google-java-format' version '0.8' apply false
id 'me.champeau.gradle.jmh' version '0.4.7' apply false
id 'me.champeau.gradle.jmh' version '0.5.0' apply false
id 'io.morethan.jmhreport' version '0.6.2.1' apply false
id 'io.spring.dependency-management' version '1.0.8.RELEASE' apply false
id 'com.google.protobuf' version '0.8.8' apply false
id 'com.palantir.git-version' version '0.12.0-rc2'
}

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

// TODO: make this a Gradle plugin someday
def details = versionDetails()
def versionSuffix = ""
Expand Down Expand Up @@ -65,9 +58,9 @@ subprojects {
targetCompatibility = 1.8

repositories {

mavenCentral()
maven { url 'https://oss.jfrog.org/oss-snapshot-local' }
mavenCentral()
jcenter()
maven {
url 'https://nexus.netifi.com/repository/jcenter/'
credentials {
Expand Down
3 changes: 3 additions & 0 deletions dependency-management.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
apply plugin: 'io.spring.dependency-management'

ext["rsocket.version"] = rsocketVersion

dependencyManagement {
imports {
mavenBom "io.rsocket:rsocket-bom:${rsocketVersion}"
Expand All @@ -11,6 +13,7 @@ dependencyManagement {
mavenBom "software.amazon.awssdk:bom:${awssdkVersion}"
mavenBom "io.rsocket:rsocket-bom:${rsocketVersion}"
mavenBom "com.google.protobuf:protobuf-bom:${protobufVersion}"
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootDependenciesVersion}"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ postgresqlVersion=42.2.5
protobufVersion=3.7.1
reactorBomVersion=Dysprosium-RELEASE
roaringbitmapVersion=0.7.42
rsocketRpcVersion=0.3.0-feature-prioritization-SNAPSHOT
rsocketRpcVersion=0.3.0-feature-routing-SNAPSHOT
rsocketVersion=1.0.0-RC6-bugfix-prioritization-SNAPSHOT
rxjava2JdbcVersion=0.2.4
slf4jVersion=1.7.25
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
22 changes: 19 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/usr/bin/env sh

#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

##############################################################################
##
## Gradle start up script for UN*X
Expand Down Expand Up @@ -28,7 +44,7 @@ APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

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

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

# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
Expand Down
18 changes: 17 additions & 1 deletion gradlew.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem

@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
Expand All @@ -14,7 +30,7 @@ set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

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

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
Expand Down
Loading

0 comments on commit 6b3b267

Please sign in to comment.