summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index abe9c6c1..6670a9a2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,7 +19,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
targetCompatibility = 1.8
-version = "1.1-REL"
+version = "1.1.3-REL"
group= "io.github.moulberry"
archivesBaseName = "NotEnoughUpdates"
String modid = "notenoughupdates"
@@ -39,6 +39,7 @@ repositories {
dependencies {
compile('org.spongepowered:mixin:0.7.11-SNAPSHOT')
compile('org.kohsuke:github-api:1.108')
+ //compile('org.eclipse.jgit:org.eclipse.jgit:5.7.0.202003110725-r')
compile('com.fasterxml.jackson.core:jackson-core:2.10.2')
compile('info.bliki.wiki:bliki-core:3.1.0')
}
@@ -60,6 +61,7 @@ jar {
shadowJar {
dependencies {
include(dependency('org.kohsuke:github-api:1.108'))
+ //include(dependency('org.eclipse.jgit:org.eclipse.jgit:5.7.0.202003110725-r'))
include(dependency('org.spongepowered:mixin:0.7.11-SNAPSHOT'))
include(dependency('commons-io:commons-io'))
@@ -74,6 +76,7 @@ shadowJar {
}
relocate 'com.fasterxml.jackson', 'neu.com.fasterxml.jackson'
+ relocate 'org.eclipse', 'neu.org.eclipse'
relocate 'org.slf4j', 'neu.org.slf4j'
exclude 'module-info.class'