Browse Source

Upgrade spring-build-conventions to 0.0.18.RELEASE

Vedran Pavic 7 năm trước cách đây
mục cha
commit
f7cb53e9bd
3 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 1 1
      Jenkinsfile
  2. 1 1
      build.gradle
  3. 2 2
      etc/checkstyle/checkstyle.xml

+ 1 - 1
Jenkinsfile

@@ -19,7 +19,7 @@ try {
 					currentBuild.result = 'FAILED: check'
 					throw e
 				} finally {
-					junit '**/build/*-results/*.xml'
+					junit '**/build/test-results/*/*.xml'
 				}
 			}
 		}

+ 1 - 1
build.gradle

@@ -1,6 +1,6 @@
 buildscript {
 	dependencies {
-		classpath 'io.spring.gradle:spring-build-conventions:0.0.16.RELEASE'
+		classpath 'io.spring.gradle:spring-build-conventions:0.0.18.RELEASE'
 		classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
 	}
 	repositories {

+ 2 - 2
etc/checkstyle/checkstyle.xml

@@ -4,12 +4,12 @@
 <module name="Checker">
 	<!-- Suppressions -->
 	<module name="SuppressionFilter">
-		<property name="file" value="${configDir}/suppressions.xml"/>
+		<property name="file" value="${config_loc}/suppressions.xml"/>
 	</module>
 
 	<!-- Root Checks -->
 	<module name="RegexpHeader">
-		<property name="headerFile" value="${configDir}/header.txt"/>
+		<property name="headerFile" value="${config_loc}/header.txt"/>
 		<property name="fileExtensions" value="java"/>
 	</module>