Skip to content

Commit

Permalink
Remove NG hack
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed Feb 21, 2024
1 parent 468e6b0 commit 4383ff6
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,6 @@ repositories {
mavenLocal()
}

tasks.configureEach {
if (it.name.startsWith('neoForm')) {
it.enabled = false
}
}

sourceSets.main.extensions.getByType(MDGExtension).disable()
sourceSets.test.extensions.getByType(MDGExtension).enable()

Expand Down Expand Up @@ -142,27 +136,6 @@ dependencies {
}

runtimeOnly(files(project.tasks.fullJar.archiveFile))

// Example mod dependency with JEI
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
// compileOnly "mezz.jei:jei-${mc_version}-common-api:${jei_version}"
// compileOnly "mezz.jei:jei-${mc_version}-forge-api:${jei_version}"
// runtimeOnly "mezz.jei:jei-${mc_version}-forge:${jei_version}"

// Example mod dependency using a mod jar from ./libs with a flat dir repository
// This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar
// The group id is ignored when searching -- in this case, it is "blank"
// implementation "blank:coolmod-${mc_version}:${coolmod_version}"

// Example mod dependency using a file as dependency
// implementation files("libs/coolmod-${mc_version}-${coolmod_version}.jar")

// Example project dependency using a sister or child project:
// implementation project(":myproject")

// For more info:
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html
}

tasks.withType(JavaCompile).configureEach {
Expand Down

0 comments on commit 4383ff6

Please sign in to comment.