-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from refinedmods/release/0.2.1
Release v0.2.1
- Loading branch information
Showing
20 changed files
with
168 additions
and
110 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 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,12 @@ | ||
plugins { | ||
id("refinedarchitect.root") | ||
id("refinedarchitect.base") | ||
} | ||
|
||
refinedarchitect { | ||
sonarQube("refinedmods_refinedstorage-rei-integration", "refinedmods") | ||
} | ||
|
||
subprojects { | ||
group = "com.refinedmods.refinedstorage" | ||
} |
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,15 @@ | ||
plugins { | ||
id("refinedarchitect.common") | ||
} | ||
|
||
refinedarchitect { | ||
common() | ||
publishing { | ||
maven = true | ||
} | ||
} | ||
|
||
base { | ||
archivesName.set("refinedstorage-rei-integration-common") | ||
} | ||
|
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,46 @@ | ||
plugins { | ||
id("refinedarchitect.fabric") | ||
} | ||
|
||
repositories { | ||
maven { | ||
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage2") | ||
credentials { | ||
username = "anything" | ||
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX" | ||
} | ||
} | ||
maven { | ||
name = "Cloth Config, REI" | ||
url = uri("https://maven.shedaniel.me/") | ||
} | ||
maven { | ||
name = "ModMenu" | ||
url = uri("https://maven.terraformersmc.com/") | ||
} | ||
} | ||
|
||
refinedarchitect { | ||
modId = "refinedstorage_rei_integration" | ||
fabric() | ||
compileWithProject(project(":refinedstorage-rei-integration-common")) | ||
publishing { | ||
maven = true | ||
} | ||
} | ||
|
||
base { | ||
archivesName.set("refinedstorage-rei-integration-fabric") | ||
} | ||
|
||
val refinedstorageVersion: String by project | ||
val architecturyVersion: String by project | ||
val clothConfigVersion: String by project | ||
val reiVersion: String by project | ||
|
||
dependencies { | ||
modApi("com.refinedmods.refinedstorage:refinedstorage-platform-fabric:${refinedstorageVersion}") | ||
modApi("dev.architectury:architectury-fabric:${architecturyVersion}") | ||
modApi("me.shedaniel.cloth:cloth-config-fabric:${clothConfigVersion}") | ||
modApi("me.shedaniel:RoughlyEnoughItems-fabric:${reiVersion}") | ||
} |
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,46 @@ | ||
plugins { | ||
id("refinedarchitect.neoforge") | ||
} | ||
|
||
repositories { | ||
maven { | ||
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage2") | ||
credentials { | ||
username = "anything" | ||
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX" | ||
} | ||
} | ||
maven { | ||
name = "REI" | ||
url = uri("https://maven.shedaniel.me/") | ||
} | ||
maven { | ||
name = "Architectury" | ||
url = uri("https://maven.architectury.dev/") | ||
} | ||
} | ||
|
||
refinedarchitect { | ||
modId = "refinedstorage_rei_integration" | ||
neoForge() | ||
compileWithProject(project(":refinedstorage-rei-integration-common")) | ||
publishing { | ||
maven = true | ||
} | ||
} | ||
|
||
base { | ||
archivesName.set("refinedstorage-rei-integration-neoforge") | ||
} | ||
|
||
val refinedstorageVersion: String by project | ||
val architecturyVersion: String by project | ||
val clothConfigVersion: String by project | ||
val reiVersion: String by project | ||
|
||
dependencies { | ||
api("com.refinedmods.refinedstorage:refinedstorage-platform-neoforge:${refinedstorageVersion}") | ||
api("dev.architectury:architectury-neoforge:${architecturyVersion}") | ||
api("me.shedaniel.cloth:cloth-config-neoforge:${clothConfigVersion}") | ||
api("me.shedaniel:RoughlyEnoughItems-neoforge:${reiVersion}") | ||
} |
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,33 @@ | ||
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.root").version("0.16.4") | ||
id("refinedarchitect.base").version("0.16.4") | ||
id("refinedarchitect.common").version("0.16.4") | ||
id("refinedarchitect.neoforge").version("0.16.4") | ||
id("refinedarchitect.fabric").version("0.16.4") | ||
} | ||
} | ||
|
||
rootProject.name = "refinedstorage-rei-integration" | ||
include("refinedstorage-rei-integration-common") | ||
include("refinedstorage-rei-integration-neoforge") | ||
include("refinedstorage-rei-integration-fabric") |