aboutsummaryrefslogtreecommitdiff
path: root/buildscript
diff options
context:
space:
mode:
authormakamys <makamys@outlook.com>2023-11-25 19:03:32 +0100
committermakamys <makamys@outlook.com>2023-11-25 19:03:32 +0100
commita563c236f49b0c1632de4a87b0ffddb51a5e0a1f (patch)
tree475f002614a1260ee3ff90856d634420afc0028b /buildscript
parentfc1f6948de798220b63e995c82fcf7717f66b344 (diff)
downloadNeodymium-a563c236f49b0c1632de4a87b0ffddb51a5e0a1f.tar.gz
Neodymium-a563c236f49b0c1632de4a87b0ffddb51a5e0a1f.tar.bz2
Neodymium-a563c236f49b0c1632de4a87b0ffddb51a5e0a1f.zip
Move RSA exclusion to buildscript dir since it's not project-specific
Follow-up to https://github.com/makamys/Neodymium/pull/34
Diffstat (limited to 'buildscript')
-rw-r--r--buildscript/forge-1.7.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscript/forge-1.7.gradle b/buildscript/forge-1.7.gradle
index 2eaf08b..24f8e07 100644
--- a/buildscript/forge-1.7.gradle
+++ b/buildscript/forge-1.7.gradle
@@ -76,7 +76,7 @@ jar {
// embed libraries in jar
from configurations.embed.collect {
- exclude '**/LICENSE', '**/LICENSE.txt'
+ exclude '**/LICENSE', '**/LICENSE.txt', 'META-INF/**.RSA'
it.isDirectory() ? it : zipTree(it)
}