Skip to content

Commit

Permalink
Spring Boot 2.2.0 to 2.2.5
Browse files Browse the repository at this point in the history
Gradle 5.6.3 to 6.2.1
  • Loading branch information
jkazama committed Mar 4, 2020
1 parent 8009678 commit e516019
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2018 jkazama
Copyright (c) 2014-2020 jkazama

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id "java"
id "eclipse"
id "org.springframework.boot" version "2.2.0.RELEASE"
id "io.spring.dependency-management" version "1.0.8.RELEASE"
id "org.springframework.boot" version "2.2.5.RELEASE"
id "io.spring.dependency-management" version "1.0.9.RELEASE"
}

ext['lombok.version'] = "1.18.10"
ext['lombok.version'] = "1.18.12"

version = "2.2.0"
version = "2.2.5"

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Expand Down Expand Up @@ -48,5 +48,5 @@ dependencies {
}

wrapper {
gradleVersion = "5.6.3"
gradleVersion = "6.2.1"
}
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.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -125,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
6 changes: 2 additions & 4 deletions src/test/java/sample/model/asset/CashInOutTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import sample.model.master.SelfFiAccount;
import sample.util.DateUtils;

//low: 簡易な正常系検証が中心。依存するCashflow/CashBalanceの単体検証パスを前提。
// low: 簡易な正常系検証が中心。依存するCashflow/CashBalanceの単体検証パスを前提。
public class CashInOutTest extends EntityTestSupport {

private static final String ccy = "JPY";
Expand Down Expand Up @@ -43,7 +43,7 @@ public void find() {
CashInOut cio = fixtures.cio(accId, "300", true);
cio.setUpdateDate(DateUtils.date("20141118"));
cio.save(rep);
//low: ちゃんとやると大変なので最低限の検証
// low: ちゃんとやると大変なので最低限の検証
assertThat(
CashInOut.find(rep, findParam("20141118", "20141119")),
hasSize(1));
Expand All @@ -64,7 +64,6 @@ private FindCashInOut findParam(String fromDay, String toDay, ActionStatusType..
}

@Test
@SuppressWarnings("unchecked")
public void withdrawal() {
tx(() -> {
// 超過の出金依頼 [例外]
Expand Down Expand Up @@ -149,7 +148,6 @@ public void error() {
}

@Test
@SuppressWarnings("unchecked")
public void process() {
tx(() -> {
// 発生日未到来の処理 [例外]
Expand Down

0 comments on commit e516019

Please sign in to comment.