Skip to content

Commit 80e5762

Browse files
committed
Merge branch '2.0.x' into 2.1.x
Closes gh-17087
2 parents fed11fe + da1d4b8 commit 80e5762

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/scripts/build-project.sh

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ source $(dirname $0)/common.sh
55
repository=$(pwd)/distribution-repository
66

77
pushd git-repo > /dev/null
8+
run_maven -N clean verify
89
run_maven -f spring-boot-project/pom.xml clean deploy -U -Dfull -DaltDeploymentRepository=distribution::default::file://${repository}
910
popd > /dev/null

pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
<suppressionsLocation>src/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
6161
<includeTestSourceDirectory>true</includeTestSourceDirectory>
6262
<propertyExpansion>main.basedir=${main.basedir}</propertyExpansion>
63+
<encoding>UTF-8</encoding>
6364
</configuration>
6465
<goals>
6566
<goal>check</goal>
@@ -73,9 +74,10 @@
7374
<configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation>
7475
<suppressionsLocation>src/checkstyle/nohttp-checkstyle-suppressions.xml</suppressionsLocation>
7576
<propertyExpansion>main.basedir=${main.basedir}</propertyExpansion>
77+
<encoding>UTF-8</encoding>
7678
<sourceDirectories>${basedir}</sourceDirectories>
7779
<includes>**/*</includes>
78-
<excludes>.git/**/*,target/**/,**/.flattened-pom.xml</excludes>
80+
<excludes>**/.git/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class,**/spring-boot-gradle-plugin/build/**</excludes>
7981
</configuration>
8082
<goals>
8183
<goal>check</goal>

0 commit comments

Comments
 (0)