Browse Source

Upgrade spring-build-conventions to 0.0.18.RELEASE

pull/5656/merge
Vedran Pavic 7 years ago committed by Rob Winch
parent
commit
f7cb53e9bd
  1. 2
      Jenkinsfile
  2. 2
      build.gradle
  3. 4
      etc/checkstyle/checkstyle.xml

2
Jenkinsfile vendored

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

2
build.gradle

@ -1,6 +1,6 @@ @@ -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 {

4
etc/checkstyle/checkstyle.xml

@ -4,12 +4,12 @@ @@ -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>

Loading…
Cancel
Save