-
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.
- Loading branch information
1 parent
bf2732d
commit 040d7d4
Showing
252 changed files
with
302 additions
and
1,095 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -44,4 +44,4 @@ build-out/ | |
|
||
src/generated/ | ||
|
||
forge-main/src/generated/ | ||
neoforge-main/src/generated/ |
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,44 @@ | ||
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") | ||
} | ||
} | ||
} | ||
} | ||
//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") | ||
// } | ||
// } | ||
// } | ||
//} |
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
forge-api/src/main/java/dev/compactmods/crafting/api/EnumCraftingState.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
forge-api/src/main/java/dev/compactmods/crafting/api/FieldDestabilizeHandling.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
forge-api/src/main/java/dev/compactmods/crafting/api/catalyst/CatalystType.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
forge-api/src/main/java/dev/compactmods/crafting/api/catalyst/ICatalystMatcher.java
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
...api/src/main/java/dev/compactmods/crafting/api/components/IPositionalComponentLookup.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
forge-api/src/main/java/dev/compactmods/crafting/api/components/IRecipeBlockComponent.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
forge-api/src/main/java/dev/compactmods/crafting/api/components/IRecipeComponent.java
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
forge-api/src/main/java/dev/compactmods/crafting/api/components/IRecipeComponents.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
forge-api/src/main/java/dev/compactmods/crafting/api/components/RecipeComponentType.java
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
forge-api/src/main/java/dev/compactmods/crafting/api/field/IActiveWorldFields.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.