Skip to content

Commit

Permalink
Merge pull request #2 from repo-alt/feature/gradle_fix
Browse files Browse the repository at this point in the history
fixed gradle after forge change
  • Loading branch information
Dream-Master authored Apr 27, 2021
2 parents fe60db4 + 2fbb295 commit 72bb9bf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@

.classpath
.project
.settings/*
.settings/*
.idea
13 changes: 9 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,25 @@ buildscript {
url = "https://repo1.maven.org/maven2/"
}
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
name = "gt"
url = "https://gregtech.overminddl1.com/"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
name = "jitpack.io"
url = "https://jitpack.io"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
classpath 'com.github.GTNH2:ForgeGradle:FG_1.2-SNAPSHOT'
}
}

apply plugin: 'forge'
apply plugin: 'java'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand All @@ -39,7 +44,7 @@ archivesBaseName = "Forbidden Magic"

minecraft {
version = "1.7.10-10.13.4.1614-1.7.10"
assetDir = "eclipse/assets"
runDir = "run"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
minecraft_version=1.7.10
forge_version=10.13.4.1614
mod_version=0.576
mod_version=0.575-gtnh-1
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-all.zip

0 comments on commit 72bb9bf

Please sign in to comment.