Skip to content

Commit eb0b852

Browse files
committed
Merge branch '2.1.x'
Closes gh-16639
2 parents d182ee2 + 6ae7274 commit eb0b852

File tree

6 files changed

+6
-104
lines changed

6 files changed

+6
-104
lines changed

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar-exclude-artifact/pom.xml

Lines changed: 0 additions & 63 deletions
This file was deleted.

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar-exclude-artifact/src/main/java/org/test/SampleApplication.java

Lines changed: 0 additions & 24 deletions
This file was deleted.

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar-exclude-artifact/verify.groovy

Lines changed: 0 additions & 11 deletions
This file was deleted.

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar-exclude-entry/verify.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,6 +22,6 @@ new Verify.JarArchiveVerification(f, Verify.SAMPLE_APP) {
2222
@Override
2323
protected void verifyZipEntries(Verify.ArchiveVerifier verifier) throws Exception {
2424
super.verifyZipEntries(verifier)
25-
verifier.assertHasNoEntryNameStartingWith("lib/servlet-api-2.5.jar")
25+
verifier.assertHasNoEntryNameStartingWith("BOOT-INF/lib/servlet-api-2.5.jar")
2626
}
2727
}.verify()

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar-exclude-group/verify.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,6 +22,6 @@ new Verify.JarArchiveVerification(f, Verify.SAMPLE_APP) {
2222
@Override
2323
protected void verifyZipEntries(Verify.ArchiveVerifier verifier) throws Exception {
2424
super.verifyZipEntries(verifier)
25-
verifier.assertHasNoEntryNameStartingWith("lib/log4j-api-2.4.1.jar")
25+
verifier.assertHasNoEntryNameStartingWith("BOOT-INF/lib/log4j-api-2.4.1.jar")
2626
}
2727
}.verify()

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar-test-scope/verify.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,6 +22,6 @@ new Verify.JarArchiveVerification(f, Verify.SAMPLE_APP) {
2222
@Override
2323
protected void verifyZipEntries(Verify.ArchiveVerifier verifier) throws Exception {
2424
super.verifyZipEntries(verifier)
25-
verifier.assertHasNoEntryNameStartingWith("lib/log4j-api-2.4.1.jar")
25+
verifier.assertHasNoEntryNameStartingWith("BOOT-INF/lib/log4j-api-2.4.1.jar")
2626
}
2727
}.verify()

0 commit comments

Comments
 (0)