Skip to content

Commit 11dfcbd

Browse files
committed
pom.xml(maven-resources-plugin): update to 3.0.1
See: - http://osdir.com/ml/announce.maven.apache.org/2016-05/msg00003.html - http://osdir.com/ml/announce.maven.apache.org/2016-06/msg00003.html Also disable resources processing when we're running unit test, they don't use resources and executing this plugin were useless. No functional changes.
1 parent e04bc5c commit 11dfcbd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@
424424

425425
<native2ascii.plugin.version>1.0-beta-1</native2ascii.plugin.version>
426426
<pmd.plugin.version>3.6</pmd.plugin.version>
427-
<resources.plugin.version>2.7</resources.plugin.version>
427+
<resources.plugin.version>3.0.1</resources.plugin.version>
428428

429429
<!-- Don't forget to update version in the Url class -->
430430
<selectizejs.version>0.12.3</selectizejs.version>

src/main/scripts/ci/check-build-and-verify.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
4141
'An "img" element must have an "alt" attribute' \
4242
--show-warnings \
4343
>validator.log 2>&1 || HTML_FAIL=yes
44-
mvn --batch-mode test -Denforcer.skip=true -DskipMinify=true >test.log 2>&1 || TEST_FAIL=yes
44+
mvn --batch-mode test \
45+
-Denforcer.skip=true \
46+
-Dmaven.resources.skip=true \
47+
-DskipMinify=true \
48+
>test.log 2>&1 || TEST_FAIL=yes
4549
# run after tests for getting compiled sources
4650
mvn --batch-mode findbugs:check >findbugs.log 2>&1 || FINDBUGS_FAIL=yes
4751
fi

0 commit comments

Comments
 (0)