Skip to content

Commit 1b1296f

Browse files
committed
Merge branch 'release/0.36'
2 parents e82313b + 18f933d commit 1b1296f

File tree

51 files changed

+323
-286
lines changed

Some content is hidden

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

51 files changed

+323
-286
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ bin/
88
.settings
99
.idea
1010
*.iml
11+
out/

build.gradle

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ buildscript {
88
}
99
dependencies {
1010
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
11-
classpath "com.diffplug.gradle.spotless:spotless:1.3.3"
11+
classpath "com.diffplug.spotless:spotless-plugin-gradle:3.13.0"
1212
classpath "de.thetaphi:forbiddenapis:2.2"
1313
classpath "de.aaschmid:gradle-cpd-plugin:1.0"
14+
classpath "io.spring.gradle:dependency-management-plugin:1.0.4.RELEASE"
1415
}
1516
}
1617

@@ -39,9 +40,16 @@ description "Support library for Spring framework, AWS Java SDK and the others."
3940

4041
subprojects {
4142
apply plugin: "java"
43+
apply plugin: "io.spring.dependency-management"
4244
apply plugin: "maven"
4345
apply plugin: "maven-publish"
4446
apply plugin: "com.jfrog.bintray"
47+
48+
dependencyManagement {
49+
imports {
50+
mavenBom "org.springframework.boot:spring-boot-dependencies:$springBootVersion"
51+
}
52+
}
4553

4654
sourceCompatibility = targetCompatibility = 1.8
4755

@@ -53,7 +61,7 @@ subprojects {
5361
apply plugin: "jacoco"
5462
apply plugin: "de.thetaphi.forbiddenapis"
5563
apply plugin: "com.diffplug.gradle.spotless"
56-
64+
5765
// code quality configuration
5866
apply from: "${rootProject.projectDir}/gradle/quality/checkstyle.gradle"
5967
apply from: "${rootProject.projectDir}/gradle/quality/findbugs.gradle"
@@ -86,13 +94,14 @@ subprojects {
8694
}
8795

8896
dependencies {
89-
compile "org.slf4j:slf4j-api:$slf4jVersion"
97+
compile "org.slf4j:slf4j-api"
9098
compileOnly "org.projectlombok:lombok:$lombokVersion"
91-
testCompile "org.slf4j:jul-to-slf4j:$slf4jVersion"
92-
testCompile "ch.qos.logback:logback-classic:$logbackVersion"
99+
testCompile "org.slf4j:jul-to-slf4j"
100+
testCompile "org.slf4j:jcl-over-slf4j"
101+
testCompile "ch.qos.logback:logback-classic"
93102
testCompile "junit:junit:$junitVersion"
94103
testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion"
95-
testCompile "org.mockito:mockito-core:$mockitoCoreVersion"
104+
testCompile "org.mockito:mockito-core"
96105
}
97106

98107

@@ -135,6 +144,6 @@ subprojects {
135144
}
136145

137146
// ======== wrapper ========
138-
task wrapper(type: Wrapper) {
139-
gradleVersion = "4.1"
147+
wrapper {
148+
gradleVersion = 4.8
140149
}

circle.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

gradle.properties

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
11
# dependency versions
2-
springBootVersion = 1.3.3.RELEASE
3-
springVersion = 4.2.5.RELEASE
4-
springSecurityVersion = 4.0.3.RELEASE
5-
springRetryVersion = 1.1.2.RELEASE
6-
springSecurityOauth2Version = 2.0.6.RELEASE
7-
springDataVersion = 1.11.4.RELEASE
8-
springHateoasVersion = 0.19.0.RELEASE
9-
awsJavaSdkVersion = 1.11.21
10-
jacksonVersion = 2.7.2
2+
springBootVersion = 1.5.9.RELEASE
3+
springSecurityOauth2Version = 2.2.1.RELEASE
4+
awsJavaSdkVersion = 1.11.233
115

126
lombokVersion = 1.16.18
137
baseunitsVersion = 2.14
148

15-
slf4jVersion = 1.7.13
16-
logbackVersion = 1.1.3
17-
18-
junitVersion = 4.11
9+
junitVersion = 4.12
1910
hamcrestVersion = 1.3
20-
mockitoCoreVersion = 1.9.5
11+
mockito.version = 2.19.0

gradle/bintray.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (System.env.BINTRAY_USER && System.env.BINTRAY_KEY) {
88
dryRun = System.env.CIRCLE_BRANCH != "master"
99
publish = true
1010
pkg {
11-
repo = "spar-wings"
11+
repo = "maven"
1212
name = project.name
1313
desc = project.description
1414
websiteUrl = "https://github.com/dai0304/spar-wings"

gradle/quality/spotless.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ spotless {
22
java {
33
licenseHeaderFile "${rootProject.projectDir}/config/spotless/spotless.license.java"
44
importOrderFile "${rootProject.projectDir}/config/spotless/spotless.importorder"
5-
eclipseFormatFile "${rootProject.projectDir}/config/spotless/spotless.eclipseformat.xml"
5+
eclipse().configFile "${rootProject.projectDir}/config/spotless/spotless.eclipseformat.xml"
66

77
// Eclipse formatter screws up long literals with underscores inside of annotations (see issue #14)
88
// @Max(value = 9_999_999 L) // what Eclipse does
@@ -14,10 +14,11 @@ spotless {
1414
// funcThatTakesLambdas(x -> {}, y -> {}) // what I wish Eclipse did
1515
custom 'Lambda fix', { it.replace('} )', '})').replace('} ,', '},') }
1616

17+
removeUnusedImports()
1718
indentWithTabs()
1819
endWithNewline()
19-
20-
customReplaceRegex 'Add space before comment asterisk', '^(\\t*)\\*', '$1 *'
20+
21+
replaceRegex 'Add space before comment asterisk', '^(\\t*)\\*', '$1 *'
2122
// customReplaceRegex 'Remove indent before line comment', '^\\t*//', '//'
2223
}
2324

gradle/wrapper/gradle-wrapper.jar

2.09 KB
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Fri Apr 22 14:11:57 JST 2016
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-bin.zip

gradlew

Lines changed: 43 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,43 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
22

33
##############################################################################
44
##
55
## Gradle start up script for UN*X
66
##
77
##############################################################################
88

9-
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10-
DEFAULT_JVM_OPTS=""
9+
# Attempt to set APP_HOME
10+
# Resolve links: $0 may be a link
11+
PRG="$0"
12+
# Need this for relative symlinks.
13+
while [ -h "$PRG" ] ; do
14+
ls=`ls -ld "$PRG"`
15+
link=`expr "$ls" : '.*-> \(.*\)$'`
16+
if expr "$link" : '/.*' > /dev/null; then
17+
PRG="$link"
18+
else
19+
PRG=`dirname "$PRG"`"/$link"
20+
fi
21+
done
22+
SAVED="`pwd`"
23+
cd "`dirname \"$PRG\"`/" >/dev/null
24+
APP_HOME="`pwd -P`"
25+
cd "$SAVED" >/dev/null
1126

1227
APP_NAME="Gradle"
1328
APP_BASE_NAME=`basename "$0"`
1429

30+
# 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=""
32+
1533
# Use the maximum available, or set MAX_FD != -1 to use that value.
1634
MAX_FD="maximum"
1735

18-
warn ( ) {
36+
warn () {
1937
echo "$*"
2038
}
2139

22-
die ( ) {
40+
die () {
2341
echo
2442
echo "$*"
2543
echo
@@ -30,6 +48,7 @@ die ( ) {
3048
cygwin=false
3149
msys=false
3250
darwin=false
51+
nonstop=false
3352
case "`uname`" in
3453
CYGWIN* )
3554
cygwin=true
@@ -40,31 +59,11 @@ case "`uname`" in
4059
MINGW* )
4160
msys=true
4261
;;
62+
NONSTOP* )
63+
nonstop=true
64+
;;
4365
esac
4466

45-
# For Cygwin, ensure paths are in UNIX format before anything is touched.
46-
if $cygwin ; then
47-
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
48-
fi
49-
50-
# Attempt to set APP_HOME
51-
# Resolve links: $0 may be a link
52-
PRG="$0"
53-
# Need this for relative symlinks.
54-
while [ -h "$PRG" ] ; do
55-
ls=`ls -ld "$PRG"`
56-
link=`expr "$ls" : '.*-> \(.*\)$'`
57-
if expr "$link" : '/.*' > /dev/null; then
58-
PRG="$link"
59-
else
60-
PRG=`dirname "$PRG"`"/$link"
61-
fi
62-
done
63-
SAVED="`pwd`"
64-
cd "`dirname \"$PRG\"`/" >&-
65-
APP_HOME="`pwd -P`"
66-
cd "$SAVED" >&-
67-
6867
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
6968

7069
# Determine the Java command to use to start the JVM.
@@ -90,7 +89,7 @@ location of your Java installation."
9089
fi
9190

9291
# Increase the maximum file descriptors if we can.
93-
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
92+
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
9493
MAX_FD_LIMIT=`ulimit -H -n`
9594
if [ $? -eq 0 ] ; then
9695
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
@@ -114,6 +113,7 @@ fi
114113
if $cygwin ; then
115114
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
116115
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116+
JAVACMD=`cygpath --unix "$JAVACMD"`
117117

118118
# We build the pattern for arguments to be converted via cygpath
119119
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
@@ -154,11 +154,19 @@ if $cygwin ; then
154154
esac
155155
fi
156156

157-
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
158-
function splitJvmOpts() {
159-
JVM_OPTS=("$@")
157+
# Escape application args
158+
save () {
159+
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160+
echo " "
160161
}
161-
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162-
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
162+
APP_ARGS=$(save "$@")
163+
164+
# Collect all arguments for the java command, following the shell quoting and substitution rules
165+
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166+
167+
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168+
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169+
cd "$(dirname "$0")"
170+
fi
163171

164-
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
172+
exec "$JAVACMD" "$@"

0 commit comments

Comments
 (0)