diff options
author | makamys <makamys@outlook.com> | 2023-11-25 19:03:32 +0100 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2023-11-25 19:03:32 +0100 |
commit | a563c236f49b0c1632de4a87b0ffddb51a5e0a1f (patch) | |
tree | 475f002614a1260ee3ff90856d634420afc0028b | |
parent | fc1f6948de798220b63e995c82fcf7717f66b344 (diff) | |
download | Neodymium-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
-rw-r--r-- | buildscript/forge-1.7.gradle | 2 | ||||
-rw-r--r-- | project.gradle | 1 |
2 files changed, 1 insertions, 2 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) } diff --git a/project.gradle b/project.gradle index 79d43ce..271901b 100644 --- a/project.gradle +++ b/project.gradle @@ -7,7 +7,6 @@ jar { 'FMLAT': "neodymium_at.cfg" ) } - exclude("META-INF/**.RSA") } repositories { |