Skip to content

Commit

Permalink
First build.. can't run it #blameOrion
Browse files Browse the repository at this point in the history
  • Loading branch information
robotgryphon committed Dec 9, 2023
1 parent 040d7d4 commit 501c973
Show file tree
Hide file tree
Showing 141 changed files with 5,675 additions and 2,919 deletions.
464 changes: 232 additions & 232 deletions .github/workflows/ci-tests-nightly.yml

Large diffs are not rendered by default.

53 changes: 9 additions & 44 deletions build.gradle.kts
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"))
}
}
}
}
11 changes: 8 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

minecraft_version=1.19.2
forge_version=43.2.0
parchment_version=2022.11.27-1.19.2
minecraft_version=1.20.4
minecraft_version_range=[1.20.4,1.21)

neoforge_version=20.4.3-beta
neo_version_range=[20.4,)
loader_version_range=[1,)

core_version=4.0.7

mod_id=compactcrafting

Expand Down
Loading

0 comments on commit 501c973

Please sign in to comment.