-
Notifications
You must be signed in to change notification settings - Fork 1
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
7893339
commit f2c0982
Showing
12 changed files
with
81 additions
and
47 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
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
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
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
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
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
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
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
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
plugins { | ||
id("refinedarchitect.neoforge") | ||
} | ||
|
||
repositories { | ||
maven { | ||
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage2") | ||
credentials { | ||
username = "anything" | ||
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX" | ||
} | ||
} | ||
maven { | ||
name = "Modmaven" | ||
url = uri("https://modmaven.dev/") | ||
content { | ||
includeGroup("mekanism") | ||
} | ||
} | ||
} | ||
|
||
refinedarchitect { | ||
modId = "refinedstorage_mekanism_integration" | ||
neoForge() | ||
sonarQube("refinedmods_refinedstorage-mekanism-integration", "refinedmods") | ||
publishing { | ||
maven = true | ||
} | ||
} | ||
|
||
group = "com.refinedmods.refinedstorage" | ||
|
||
base { | ||
archivesName.set("refinedstorage-mekanism-integration") | ||
} | ||
|
||
val refinedstorageVersion: String by project | ||
val minecraftVersion: String by project | ||
val mekanismVersion: String by project | ||
|
||
dependencies { | ||
api("com.refinedmods.refinedstorage:refinedstorage-platform-neoforge:${refinedstorageVersion}") | ||
compileOnlyApi("mekanism:Mekanism:${minecraftVersion}-${mekanismVersion}:api") | ||
runtimeOnly("mekanism:Mekanism:${minecraftVersion}-${mekanismVersion}:all") { | ||
exclude(group = "com.blamejared.crafttweaker") | ||
} | ||
} | ||
|
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,4 +1,5 @@ | ||
refinedstorageVersion=2.0.0-milestone.4.2 | ||
mekanismVersion=10.6.4.50 | ||
minecraftVersion=1.21 | ||
# Gradle | ||
org.gradle.jvmargs=-Xmx1G |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
pluginManagement { | ||
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
maven { | ||
url = uri("https://maven.pkg.github.com/refinedmods/refinedarchitect") | ||
credentials { | ||
username = "anything" | ||
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX" | ||
} | ||
} | ||
maven { | ||
name = "Fabric" | ||
url = uri("https://maven.fabricmc.net/") | ||
} | ||
maven { | ||
name = "NeoForge" | ||
url = uri("https://maven.neoforged.net/releases") | ||
} | ||
} | ||
plugins { | ||
id("refinedarchitect.neoforge").version("0.16.3") | ||
} | ||
} |