-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First build.. can't run it #blameOrion
- Loading branch information
1 parent
040d7d4
commit 501c973
Showing
141 changed files
with
5,675 additions
and
2,919 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,9 @@ | ||
//var envVersion: String = System.getenv("CC_VERSION") ?: "9.9.9" | ||
//if(envVersion.startsWith("v")) | ||
// envVersion = envVersion.trimStart('v'); | ||
// | ||
//val mod_id: String by extra | ||
//val isRelease: Boolean = (System.getenv("CC_RELEASE") ?: "false").equals("true", true) | ||
// | ||
//plugins { | ||
// id("maven-publish") | ||
//} | ||
// | ||
//val deps = listOf( | ||
// project(":forge-api"), | ||
// project(":forge-main") | ||
//) | ||
// | ||
//deps.forEach { | ||
// project.evaluationDependsOn(it.path) | ||
//} | ||
// | ||
//val PACKAGES_URL = System.getenv("GH_PKG_URL") ?: "https://maven.pkg.github.com/compactmods/compactcrafting" | ||
//publishing { | ||
// publications.register<MavenPublication>("allLibs") { | ||
// artifactId = mod_id | ||
// groupId = "dev.compactmods" | ||
// version = envVersion | ||
// | ||
// this.artifact(project(":forge-api").tasks.named("jar").get()) | ||
// this.artifact(project(":forge-api").tasks.named("sourcesJar").get()) | ||
// this.artifact(project(":forge-main").tasks.named("jar").get()) | ||
// this.artifact(project(":forge-main").tasks.named("jarJar").get()) | ||
// } | ||
// | ||
// repositories { | ||
// // GitHub Packages | ||
// maven(PACKAGES_URL) { | ||
// name = "GitHubPackages" | ||
// credentials { | ||
// username = System.getenv("GITHUB_ACTOR") | ||
// password = System.getenv("GITHUB_TOKEN") | ||
// } | ||
// } | ||
// } | ||
//} | ||
allprojects { | ||
gradle.projectsEvaluated { | ||
tasks.withType<JavaCompile> { | ||
tasks.withType(JavaCompile::class) { | ||
options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "100000")) | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.