Fix META-INF/LICENSE.txt
CodeQL Advanced / codeql-analysis-call (push) Waiting to run Details
CI / Build (17, ubuntu-latest) (push) Waiting to run Details
CI / Build (17, windows-latest) (push) Waiting to run Details
CI / Test Against Snapshots (17, 17) (push) Waiting to run Details
CI / Test Against Snapshots (21-ea, 21) (push) Waiting to run Details
CI / Check Samples (push) Waiting to run Details
CI / Deploy Artifacts (push) Blocked by required conditions Details
CI / Deploy Docs (push) Blocked by required conditions Details
CI / Deploy Schema (push) Blocked by required conditions Details
CI / Perform Release (push) Blocked by required conditions Details
CI / Send Notification (push) Blocked by required conditions Details
Deploy Docs / build (push) Waiting to run Details

Previously the update put everything into META-INF

Issue gh-17638
This commit is contained in:
Rob Winch 2025-07-29 15:29:47 -05:00
parent d5107dd752
commit f2769e6eff
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

View File

@ -43,9 +43,10 @@ class SpringModulePlugin extends AbstractSpringJavaPlugin {
deployArtifacts.dependsOn project.tasks.artifactoryPublish deployArtifacts.dependsOn project.tasks.artifactoryPublish
} }
project.tasks.withType(Jar) { project.tasks.withType(Jar) {
from(project.rootProject.files('LICENSE.txt')) from(project.rootProject.files('LICENSE.txt')) {
into('META-INF') into('META-INF')
} }
} }
}
} }