make sure includeLibraries
only includes jar files
All checks were successful
CI / build (push) Successful in 1m57s
All checks were successful
CI / build (push) Successful in 1m57s
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
gitea.maven.url = https://gitea.woggioni.net/api/packages/woggioni/maven
|
||||
|
||||
lys.version = 2025.01.17
|
||||
lys.version = 2025.03.08
|
||||
|
||||
version.envelope=2025.01.21
|
||||
version.envelope=2025.03.12
|
||||
|
||||
org.gradle.caching=true
|
||||
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
@@ -135,7 +135,10 @@ public abstract class EnvelopeJarTask extends AbstractArchiveTask {
|
||||
}
|
||||
|
||||
public void includeLibraries(Object... files) {
|
||||
into(Constants.LIBRARIES_FOLDER, (copySpec) -> copySpec.from(files));
|
||||
into(Constants.LIBRARIES_FOLDER, (copySpec) -> {
|
||||
copySpec.include("*.jar");
|
||||
copySpec.from(files);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user