mirror of
https://github.com/chylex/Hardcore-Ender-Expansion-2.git
synced 2025-09-16 17:24:47 +02:00
Compare commits
4 Commits
new
...
cd3875dbba
Author | SHA1 | Date | |
---|---|---|---|
cd3875dbba
|
|||
cfab626586
|
|||
cc6e26152d
|
|||
cc299af6b8
|
22
.gitignore
vendored
22
.gitignore
vendored
@@ -1,15 +1,17 @@
|
||||
# IntelliJ
|
||||
|
||||
/.idea/
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
|
||||
# Gradle
|
||||
|
||||
# gradle
|
||||
.gradle/
|
||||
build/
|
||||
|
||||
# Game
|
||||
# idea
|
||||
/.idea/
|
||||
|
||||
# eclipse
|
||||
/bin/
|
||||
*.launch
|
||||
.settings
|
||||
.metadata
|
||||
.classpath
|
||||
.project
|
||||
|
||||
# game
|
||||
/run/
|
||||
|
104
build.gradle.kts
104
build.gradle.kts
@@ -1,110 +1,12 @@
|
||||
val javaVersion: String by project
|
||||
|
||||
val minecraftVersion: String by project
|
||||
val parchmentVersion: String by project
|
||||
val kotlinForForgeVersion: String by project
|
||||
val neoForgeVersion: String by project
|
||||
|
||||
val minecraftVersionRange: String by project
|
||||
val neoForgeVersionRange: String by project
|
||||
val kotlinForForgeVersionRange: String by project
|
||||
|
||||
plugins {
|
||||
idea
|
||||
kotlin("jvm") version "1.9.23"
|
||||
id("net.neoforged.moddev") version "1.0.10" // https://projects.neoforged.net/neoforged/ModDevGradle
|
||||
}
|
||||
|
||||
group = "com.chylex.hee"
|
||||
|
||||
idea {
|
||||
module {
|
||||
excludeDirs.add(file("gradle"))
|
||||
excludeDirs.add(file("gradle/wrapper"))
|
||||
excludeDirs.add(file("run"))
|
||||
|
||||
isDownloadSources = true
|
||||
isDownloadJavadoc = true
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven(url = "https://thedarkcolour.github.io/KotlinForForge") {
|
||||
name = "KotlinForForge"
|
||||
content { includeGroup("thedarkcolour") }
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion.set(JavaLanguageVersion.of(javaVersion))
|
||||
}
|
||||
|
||||
manifest {
|
||||
attributes(
|
||||
"Specification-Title" to "hee",
|
||||
"Specification-Vendor" to "chylex",
|
||||
"Specification-Version" to "0",
|
||||
"Implementation-Title" to "Hardcore-Ender-Expansion-2",
|
||||
"Implementation-Vendor" to "chylex",
|
||||
"Implementation-Version" to version,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
neoForge {
|
||||
version = neoForgeVersion
|
||||
|
||||
parchment.minecraftVersion.set(minecraftVersion)
|
||||
parchment.mappingsVersion.set(parchmentVersion)
|
||||
|
||||
runs {
|
||||
configureEach {
|
||||
gameDirectory.set(file("run"))
|
||||
systemProperty("forge.logging.console.level", "debug")
|
||||
}
|
||||
|
||||
register("client") {
|
||||
ideName.set("Client")
|
||||
client()
|
||||
}
|
||||
|
||||
register("server") {
|
||||
ideName.set("Server")
|
||||
server()
|
||||
}
|
||||
|
||||
register("data") {
|
||||
ideName.set("Data")
|
||||
data()
|
||||
|
||||
programArguments.apply {
|
||||
add("--all")
|
||||
addAll("--mod", "hee")
|
||||
addAll("--existing", file("src/main/resources").absolutePath)
|
||||
addAll("--output", file("src/generated/resources").absolutePath)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("thedarkcolour:kotlinforforge-neoforge:$kotlinForForgeVersion")
|
||||
}
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
options.encoding = "UTF-8"
|
||||
}
|
||||
|
||||
tasks.withType<AbstractArchiveTask>().configureEach {
|
||||
isPreserveFileTimestamps = false
|
||||
isReproducibleFileOrder = true
|
||||
}
|
||||
|
||||
tasks.processResources {
|
||||
inputs.property("version", version)
|
||||
inputs.property("minecraftVersionRange", minecraftVersionRange)
|
||||
inputs.property("neoForgeVersionRange", neoForgeVersionRange)
|
||||
inputs.property("kotlinForForgeVersionRange", kotlinForForgeVersionRange)
|
||||
|
||||
filesMatching("META-INF/neoforge.mods.toml") {
|
||||
expand(inputs.properties)
|
||||
}
|
||||
}
|
||||
|
@@ -1,20 +1,24 @@
|
||||
# Mod
|
||||
group=com.chylex.hee
|
||||
version=2.0.0-dev
|
||||
modId=hee
|
||||
modName=Hardcore Ender Expansion 2
|
||||
modDescription=
|
||||
modVersion=2.0.0-dev
|
||||
modAuthor=chylex
|
||||
modLicense=TODO
|
||||
modURL=https://hee.chylex.com
|
||||
modAuthorsURL=https://hee.chylex.com/authors
|
||||
modSourcesURL=https://github.com/chylex/Hardcore-Ender-Expansion-2
|
||||
modIssuesURL=https://github.com/chylex/Hardcore-Ender-Expansion-2/issues
|
||||
|
||||
# Dependencies
|
||||
javaVersion=21
|
||||
minecraftVersion=1.21
|
||||
parchmentVersion=2024.07.07
|
||||
neoForgeVersion=21.0.96-beta
|
||||
kotlinForForgeVersion=5.4.0
|
||||
minecraftVersion=1.19.3
|
||||
parchmentVersion=2022.12.18
|
||||
forgeVersion=44.1.16
|
||||
|
||||
# Constraints
|
||||
minecraftVersionRange=[1.21,)
|
||||
neoForgeVersionRange=[21.0.96-beta,)
|
||||
kotlinForForgeVersionRange=[5.4.0,)
|
||||
minecraftVersionRange=[1.19.3,1.20)
|
||||
forgeVersionRange=[44.1.0,)
|
||||
|
||||
# Gradle
|
||||
org.gradle.jvmargs=-Xmx3G
|
||||
org.gradle.caching=true
|
||||
org.gradle.parallel=true
|
||||
org.gradle.daemon=false
|
||||
|
2
gradle/plugins/.gitignore
vendored
Normal file
2
gradle/plugins/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/.gradle/
|
||||
/build/
|
35
gradle/plugins/build.gradle.kts
Normal file
35
gradle/plugins/build.gradle.kts
Normal file
@@ -0,0 +1,35 @@
|
||||
plugins {
|
||||
idea
|
||||
`kotlin-dsl`
|
||||
`maven-publish`
|
||||
}
|
||||
|
||||
group = "com.chylex.hee.gradle"
|
||||
version = "1"
|
||||
|
||||
idea {
|
||||
module {
|
||||
excludeDirs.add(file("gradle"))
|
||||
excludeDirs.add(file("repository"))
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven(url = "https://maven.minecraftforge.net")
|
||||
maven(url = "https://maven.parchmentmc.org")
|
||||
maven(url = "https://repo.spongepowered.org/maven")
|
||||
gradlePluginPortal()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(group = "net.minecraftforge.gradle", name = "ForgeGradle", version = "5.1.+")
|
||||
implementation(group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version = "1.8.0")
|
||||
implementation(group = "org.parchmentmc.librarian.forgegradle", name = "org.parchmentmc.librarian.forgegradle.gradle.plugin", version = "1.+")
|
||||
implementation(group = "org.spongepowered", name = "mixingradle", version = "0.7-SNAPSHOT")
|
||||
}
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
maven(url = projectDir.resolve("repository"))
|
||||
}
|
||||
}
|
1
gradle/plugins/gradle.properties
Normal file
1
gradle/plugins/gradle.properties
Normal file
@@ -0,0 +1 @@
|
||||
org.gradle.daemon=false
|
1
gradle/plugins/gradle/wrapper
Symbolic link
1
gradle/plugins/gradle/wrapper
Symbolic link
@@ -0,0 +1 @@
|
||||
../../wrapper
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
327ad8bacd3493a78c16498cab177afd
|
@@ -0,0 +1 @@
|
||||
25b98e7445eeea1915e4f1350fb98d41b2711111
|
@@ -0,0 +1 @@
|
||||
34f79fc527b7a225266633b1e95cf9fd40b9c0ae90361a95db4b5b3b2f705c5e
|
@@ -0,0 +1 @@
|
||||
c6c42e334870729a42c8ae00ba1bc586a20de775e5cb8dfa3b4e85d8c2b1f7c5d41046e8aeae1a62edd505f619fe391744e20dd89528088c695f414706550e39
|
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"formatVersion": "1.1",
|
||||
"component": {
|
||||
"group": "com.chylex.hee.gradle",
|
||||
"module": "plugins",
|
||||
"version": "1",
|
||||
"attributes": {
|
||||
"org.gradle.status": "release"
|
||||
}
|
||||
},
|
||||
"createdBy": {
|
||||
"gradle": {
|
||||
"version": "7.5.1"
|
||||
}
|
||||
},
|
||||
"variants": [
|
||||
{
|
||||
"name": "apiElements",
|
||||
"attributes": {
|
||||
"org.gradle.category": "library",
|
||||
"org.gradle.dependency.bundling": "external",
|
||||
"org.gradle.jvm.environment": "standard-jvm",
|
||||
"org.gradle.jvm.version": 17,
|
||||
"org.gradle.libraryelements": "jar",
|
||||
"org.gradle.usage": "java-api",
|
||||
"org.jetbrains.kotlin.platform.type": "jvm"
|
||||
},
|
||||
"files": [
|
||||
{
|
||||
"name": "plugins-1.jar",
|
||||
"url": "plugins-1.jar",
|
||||
"size": 853930,
|
||||
"sha512": "c6c42e334870729a42c8ae00ba1bc586a20de775e5cb8dfa3b4e85d8c2b1f7c5d41046e8aeae1a62edd505f619fe391744e20dd89528088c695f414706550e39",
|
||||
"sha256": "34f79fc527b7a225266633b1e95cf9fd40b9c0ae90361a95db4b5b3b2f705c5e",
|
||||
"sha1": "25b98e7445eeea1915e4f1350fb98d41b2711111",
|
||||
"md5": "327ad8bacd3493a78c16498cab177afd"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "runtimeElements",
|
||||
"attributes": {
|
||||
"org.gradle.category": "library",
|
||||
"org.gradle.dependency.bundling": "external",
|
||||
"org.gradle.jvm.environment": "standard-jvm",
|
||||
"org.gradle.jvm.version": 17,
|
||||
"org.gradle.libraryelements": "jar",
|
||||
"org.gradle.usage": "java-runtime",
|
||||
"org.jetbrains.kotlin.platform.type": "jvm"
|
||||
},
|
||||
"dependencies": [
|
||||
{
|
||||
"group": "net.minecraftforge.gradle",
|
||||
"module": "ForgeGradle",
|
||||
"version": {
|
||||
"requires": "5.1.+"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "org.jetbrains.kotlin",
|
||||
"module": "kotlin-gradle-plugin",
|
||||
"version": {
|
||||
"requires": "1.8.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "org.parchmentmc.librarian.forgegradle",
|
||||
"module": "org.parchmentmc.librarian.forgegradle.gradle.plugin",
|
||||
"version": {
|
||||
"requires": "1.+"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "org.spongepowered",
|
||||
"module": "mixingradle",
|
||||
"version": {
|
||||
"requires": "0.7-SNAPSHOT"
|
||||
}
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "plugins-1.jar",
|
||||
"url": "plugins-1.jar",
|
||||
"size": 853930,
|
||||
"sha512": "c6c42e334870729a42c8ae00ba1bc586a20de775e5cb8dfa3b4e85d8c2b1f7c5d41046e8aeae1a62edd505f619fe391744e20dd89528088c695f414706550e39",
|
||||
"sha256": "34f79fc527b7a225266633b1e95cf9fd40b9c0ae90361a95db4b5b3b2f705c5e",
|
||||
"sha1": "25b98e7445eeea1915e4f1350fb98d41b2711111",
|
||||
"md5": "327ad8bacd3493a78c16498cab177afd"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@@ -0,0 +1 @@
|
||||
d1b393ef437f35e9a27691366a95e39e
|
@@ -0,0 +1 @@
|
||||
d5114a4b883290dfdf4321be8df4f60f83a18e21
|
@@ -0,0 +1 @@
|
||||
1ddf9b3b4cacc4eed876cab4d4766d93e8ce6833620d0bc4b96dc21caa44e172
|
@@ -0,0 +1 @@
|
||||
4d69cfc4d425c1c729fceab056d2607ac8e88f109db8725448a313a6fda01b245533638006cd0ea99025c8ca7f0350dcc596108d7512c055906c274e1dd35814
|
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||
<!-- which should be used instead. Do not delete the following line which -->
|
||||
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||
<!-- that they should prefer consuming it instead. -->
|
||||
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<version>1</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.minecraftforge.gradle</groupId>
|
||||
<artifactId>ForgeGradle</artifactId>
|
||||
<version>5.1.+</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-gradle-plugin</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.parchmentmc.librarian.forgegradle</groupId>
|
||||
<artifactId>org.parchmentmc.librarian.forgegradle.gradle.plugin</artifactId>
|
||||
<version>1.+</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.spongepowered</groupId>
|
||||
<artifactId>mixingradle</artifactId>
|
||||
<version>0.7-SNAPSHOT</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
a2830a30f38843cd60e6707532e76156
|
@@ -0,0 +1 @@
|
||||
21310571fe96a291d92ccf3cc5b41045c012043c
|
@@ -0,0 +1 @@
|
||||
cb4f23b2e04592b37a278639894e3e3c72603b778ae5856cab36637b444e775e
|
@@ -0,0 +1 @@
|
||||
e91efadc717db22f35b383d6b1439fff43932b4139a67239889e86bb142ecc35b01bb505cc254fc982e1a693916117a6e6faf12a689060e917d45f20c6fc23a5
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20230219104731</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
532cef5f8ebe61c698d6ebd2d55ccb11
|
@@ -0,0 +1 @@
|
||||
66a5fe2b962b9bbe284999386fc6bb91e26e83c1
|
@@ -0,0 +1 @@
|
||||
2fe25a6a6810823290633311f64831e3a8c4661d2a6688381b03fbba94c6e04b
|
@@ -0,0 +1 @@
|
||||
8be0060fbd77658fd69abca1c97cd682bd683f024cfe16d9790c6cb95dc179e5c024f412c181ae4b29cf15843b953d5aafafcb05df6564fdfe99be7e496bd538
|
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>hee.forge</groupId>
|
||||
<artifactId>hee.forge.gradle.plugin</artifactId>
|
||||
<version>1</version>
|
||||
<packaging>pom</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
8f005d28c8899738a612cf5e58ab763b
|
@@ -0,0 +1 @@
|
||||
72bc41ff758a20023ea33ecb4895a5703d20f769
|
@@ -0,0 +1 @@
|
||||
c87d9c1f155e8d57634be0308af049c602becd2e9ce3be9a32000eb534d2d150
|
@@ -0,0 +1 @@
|
||||
91c2b331568b37c9c19a2935a0066d6b3c9cfb7c32a59d93a379b65708158303b1768bbf31b74f1bc96cf542019a6cbba2d3a340055d26338ff0b025a93ba2fc
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>hee.forge</groupId>
|
||||
<artifactId>hee.forge.gradle.plugin</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20230219104724</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
86d80c0b115a35e03cae0e9dab0be75b
|
@@ -0,0 +1 @@
|
||||
16499be6397dd63dc7e81142f3cda1f8109ca9f0
|
@@ -0,0 +1 @@
|
||||
635115d09568353c8b7c6091e1ee7c05fa33da71d12cea6a91d373943df613d4
|
@@ -0,0 +1 @@
|
||||
68d68d2f96b91e8fef0eaec55e3e260f0d8c4418610fd96fd41669b9eb84144bb2c86aae0fe320b4ca943a74d64b4144bd5214c76a06bc8d2e481cd0685b304d
|
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>hee.java</groupId>
|
||||
<artifactId>hee.java.gradle.plugin</artifactId>
|
||||
<version>1</version>
|
||||
<packaging>pom</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
ac1b7ed6a176da9587ae6f621f7e24bf
|
@@ -0,0 +1 @@
|
||||
11fec6852ff9a0f76628c1b4ff1ffe4c75c914fa
|
@@ -0,0 +1 @@
|
||||
fe771766068f84f95b47a44c641271a52a088a7a4130a2d8024004e8912a0554
|
@@ -0,0 +1 @@
|
||||
051560621558bd04e007a6a67f2e53f718375014720602bb675ccafc598f38fc81966d779191cc5cd5335d8d16a303d09dab65c18d1d6fdf39ad186ec073c9ee
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>hee.java</groupId>
|
||||
<artifactId>hee.java.gradle.plugin</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20230219104724</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
ddc2a83e0d723f35a9d198463f75afe9
|
@@ -0,0 +1 @@
|
||||
800fb25b482d0d7deafb3b3d4ba8a2107d685023
|
@@ -0,0 +1 @@
|
||||
adb92ad13ec8cf614832e81259cbbf275f8cefc6ca85efb0e0b19f72508b6b8b
|
@@ -0,0 +1 @@
|
||||
b53d2d545bedaf6ac0b26d2d66a5dd1f69dc02280468078b0f3ae60ddb57b824a902e9cb97da903ccc175c4d04a13dfa52a227277deb07a6176ecd6b3355f022
|
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>hee.kotlin</groupId>
|
||||
<artifactId>hee.kotlin.gradle.plugin</artifactId>
|
||||
<version>1</version>
|
||||
<packaging>pom</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
98e1ec575082911834164fdacc463b55
|
@@ -0,0 +1 @@
|
||||
bb72ef43ab5bbe88d0512362f170fc0ae45304ac
|
@@ -0,0 +1 @@
|
||||
667ba69ba9834612da77498c9d321a626375640aa25a006defb4cac680f9c916
|
@@ -0,0 +1 @@
|
||||
04ed0c0b11e8436f73ff45e73a08e6181c1dfe9b30b6943e0105d25cdded9ef8e28a22b84565afb139d111671072ba4c1acc04e79d4efed2d5195cab984a5e37
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>hee.kotlin</groupId>
|
||||
<artifactId>hee.kotlin.gradle.plugin</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20230219104724</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
2a6791fc10d18700c4d2d90ee42bb10d
|
@@ -0,0 +1 @@
|
||||
9eba40923a5db98ff8d3664dc0e5fbb70a0f1f35
|
@@ -0,0 +1 @@
|
||||
9200a3c10b73033039a76de670c88977c3f5bd2a57bb55b446b76f1ec0f9032f
|
@@ -0,0 +1 @@
|
||||
357416a672d0256c6162304e1453d5776683f5d934d02a77c6714ffe040d70f4bf3566364c07a8651146a3d4b8f6762dd43fc14301567e601b6c0f2ac40e239e
|
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>hee.minecraft</groupId>
|
||||
<artifactId>hee.minecraft.gradle.plugin</artifactId>
|
||||
<version>1</version>
|
||||
<packaging>pom</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
ffe775f0b29a8ca11d52de40fb60703c
|
@@ -0,0 +1 @@
|
||||
f5a290f8d21d893403809403f816bd759edb0ae5
|
@@ -0,0 +1 @@
|
||||
d8fc7322ccf9830a7d27c7e757ebb4a2fac0e9192f4afcc848c7824c1cd3c47d
|
@@ -0,0 +1 @@
|
||||
92d3d35dd0f86697d5b4761b6f6a82dbad7e7c7dd2b0508886cbb791784e5ce21eed12cd728b231778b0a94999dec442ee4ccc07d7d4c41695f2f42564a31474
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>hee.minecraft</groupId>
|
||||
<artifactId>hee.minecraft.gradle.plugin</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20230219104724</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
2e495e0fbf39de9f25fc5b1d1a47553b
|
@@ -0,0 +1 @@
|
||||
2fc69e2b7ab6a2a76dd241cf421ffca95d4777f6
|
@@ -0,0 +1 @@
|
||||
937e32cb00f57a532dbb69008764a1f4b67be899889b842753261fccb6930b93
|
@@ -0,0 +1 @@
|
||||
b4b0e08884c65caa43daac900bd30a0792257d161e9ce37da606f874f8ff5427dc8b4b1d8bdd5c49e4629693ed996ce520fbf1b471ecbe34985e6d48a3aa87b4
|
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>hee.vanilla</groupId>
|
||||
<artifactId>hee.vanilla.gradle.plugin</artifactId>
|
||||
<version>1</version>
|
||||
<packaging>pom</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
4a04806ae7945156f7f0946751946fa6
|
@@ -0,0 +1 @@
|
||||
d7c3731fd415e6c27f77085956a316c1ceb847b5
|
@@ -0,0 +1 @@
|
||||
24b56698554741bc8c8b803dcf332e48598210fda02bf5c1c3324a52765f5aa1
|
@@ -0,0 +1 @@
|
||||
02ae32e3dba0656a26c6d0fc57e45d0ae6b962dadc286e1e08467c06d033ddb046451d23beef2a4b0b0688793a7b6b6ca7b3d5adfa126a1f0d89dd39cb1749af
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>hee.vanilla</groupId>
|
||||
<artifactId>hee.vanilla.gradle.plugin</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20230219104724</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
f87c739f02b985a416901ab71df1c4cf
|
@@ -0,0 +1 @@
|
||||
b9f382aaec83f4269186a18019505ea3f76030cb
|
@@ -0,0 +1 @@
|
||||
662dc1f366b013f8a79e49f3e960d010aef8d92453b1df43407422af10741b39
|
@@ -0,0 +1 @@
|
||||
d507c225b69d9c6e69d3a2e1021fee92a51999a893a7af01ad210db55c3493d8afc047e194dddaab776626a9c48cbaa1202b4ced063e41213ed9abb18b9b6517
|
1
gradle/plugins/settings.gradle.kts
Normal file
1
gradle/plugins/settings.gradle.kts
Normal file
@@ -0,0 +1 @@
|
||||
rootProject.name = "plugins"
|
10
gradle/plugins/src/main/kotlin/hee.forge.gradle.kts
Normal file
10
gradle/plugins/src/main/kotlin/hee.forge.gradle.kts
Normal file
@@ -0,0 +1,10 @@
|
||||
plugins {
|
||||
id("hee.minecraft")
|
||||
}
|
||||
|
||||
val minecraftVersion: String by project
|
||||
val forgeVersion: String by project
|
||||
|
||||
dependencies {
|
||||
minecraft("net.minecraftforge:forge:${minecraftVersion}-${forgeVersion}")
|
||||
}
|
13
gradle/plugins/src/main/kotlin/hee.java.gradle.kts
Normal file
13
gradle/plugins/src/main/kotlin/hee.java.gradle.kts
Normal file
@@ -0,0 +1,13 @@
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion.set(JavaLanguageVersion.of(17))
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
options.encoding = "UTF-8"
|
||||
}
|
18
gradle/plugins/src/main/kotlin/hee.kotlin.gradle.kts
Normal file
18
gradle/plugins/src/main/kotlin/hee.kotlin.gradle.kts
Normal file
@@ -0,0 +1,18 @@
|
||||
plugins {
|
||||
id("hee.java")
|
||||
kotlin("jvm")
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
java.setSrcDirs(emptyList<File>())
|
||||
}
|
||||
|
||||
test {
|
||||
java.setSrcDirs(emptyList<File>())
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(kotlin("stdlib"))
|
||||
}
|
43
gradle/plugins/src/main/kotlin/hee.minecraft.gradle.kts
Normal file
43
gradle/plugins/src/main/kotlin/hee.minecraft.gradle.kts
Normal file
@@ -0,0 +1,43 @@
|
||||
plugins {
|
||||
idea
|
||||
id("hee.kotlin")
|
||||
id("net.minecraftforge.gradle")
|
||||
id("org.parchmentmc.librarian.forgegradle")
|
||||
id("org.spongepowered.mixin")
|
||||
}
|
||||
|
||||
idea {
|
||||
module {
|
||||
excludeDirs.add(file("src/main/java"))
|
||||
excludeDirs.add(file("src/test/java"))
|
||||
}
|
||||
}
|
||||
|
||||
val minecraftVersion: String by project
|
||||
val parchmentVersion: String by project
|
||||
|
||||
minecraft {
|
||||
mappings("parchment", "${parchmentVersion}-${minecraftVersion}")
|
||||
}
|
||||
|
||||
val modId: String by project
|
||||
val modName: String by project
|
||||
val modDescription: String by project
|
||||
val modVersion: String by project
|
||||
val modLicense: String by project
|
||||
val modURL: String by project
|
||||
val modAuthorsURL: String by project
|
||||
val modSourcesURL: String by project
|
||||
val modIssuesURL: String by project
|
||||
|
||||
tasks.processResources {
|
||||
inputs.property("id", modId)
|
||||
inputs.property("name", modName)
|
||||
inputs.property("description", modDescription)
|
||||
inputs.property("version", modVersion)
|
||||
inputs.property("license", modLicense)
|
||||
inputs.property("modURL", modURL)
|
||||
inputs.property("authorsURL", modAuthorsURL)
|
||||
inputs.property("sourcesURL", modSourcesURL)
|
||||
inputs.property("issuesURL", modIssuesURL)
|
||||
}
|
9
gradle/plugins/src/main/kotlin/hee.vanilla.gradle.kts
Normal file
9
gradle/plugins/src/main/kotlin/hee.vanilla.gradle.kts
Normal file
@@ -0,0 +1,9 @@
|
||||
plugins {
|
||||
id("hee.minecraft")
|
||||
}
|
||||
|
||||
val minecraftVersion: String by project
|
||||
|
||||
dependencies {
|
||||
minecraft("net.minecraft:joined:${minecraftVersion}")
|
||||
}
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,7 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
35
gradlew
vendored
35
gradlew
vendored
@@ -55,7 +55,7 @@
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
@@ -80,11 +80,13 @@ do
|
||||
esac
|
||||
done
|
||||
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
@@ -131,29 +133,22 @@ location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD=java
|
||||
if ! command -v java >/dev/null 2>&1
|
||||
then
|
||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,SC3045
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,SC3045
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
@@ -198,15 +193,11 @@ if "$cygwin" || "$msys" ; then
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
|
||||
# Collect all arguments for the java command:
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# and any embedded shellness will be escaped.
|
||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||
# treated as '${Hostname}' itself on the command line.
|
||||
# Collect all arguments for the java command;
|
||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||
# shell script including quotes and variable substitutions, so put them in
|
||||
# double quotes to make sure that they get re-expanded; and
|
||||
# * put everything else in single quotes, so that it's not re-expanded.
|
||||
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
|
21
gradlew.bat
vendored
21
gradlew.bat
vendored
@@ -26,7 +26,6 @@ if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%"=="" set DIRNAME=.
|
||||
@rem This is normally unused
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@@ -43,11 +42,11 @@ set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if %ERRORLEVEL% equ 0 goto execute
|
||||
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
@@ -57,11 +56,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto execute
|
||||
|
||||
echo. 1>&2
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||
echo. 1>&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||
echo location of your Java installation. 1>&2
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||
echo.
|
||||
echo Please set the JAVA_HOME variable in your environment to match the
|
||||
echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
|
77
loaders/forge/build.gradle.kts
Normal file
77
loaders/forge/build.gradle.kts
Normal file
@@ -0,0 +1,77 @@
|
||||
import net.minecraftforge.gradle.common.util.RunConfig
|
||||
|
||||
val modId: String by project
|
||||
val modName: String by project
|
||||
val modAuthor: String by project
|
||||
|
||||
plugins {
|
||||
id("hee.forge")
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven(url = "https://thedarkcolour.github.io/KotlinForForge/")
|
||||
}
|
||||
|
||||
minecraft {
|
||||
fun RunConfig.registerMod(projects: Collection<Project>) {
|
||||
mods {
|
||||
register(modId) {
|
||||
sources(projects.mapNotNull { it.extensions.findByType<SourceSetContainer>()?.findByName("main") })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun RunConfig.configureRun() {
|
||||
taskName(name)
|
||||
workingDirectory(rootProject.file("run"))
|
||||
ideaModule("${rootProject.name}${path.replace(':', '.')}.main")
|
||||
|
||||
property("forge.logging.markers", "REGISTRIES")
|
||||
property("forge.logging.console.level", "debug")
|
||||
property("forge.enabledGameTestNamespaces", modId)
|
||||
}
|
||||
|
||||
fun runGame(run: RunConfig) = with(run) {
|
||||
configureRun()
|
||||
registerMod(rootProject.subprojects)
|
||||
}
|
||||
|
||||
runs {
|
||||
create("client", ::runGame)
|
||||
create("server", ::runGame)
|
||||
}
|
||||
}
|
||||
|
||||
fun DependencyHandler.implementationProject(name: String) {
|
||||
implementation(project(name)) {
|
||||
exclude("net.minecraft", "joined")
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("thedarkcolour:kotlinforforge:4.0.0")
|
||||
}
|
||||
|
||||
val minecraftVersionRange: String by project
|
||||
val forgeVersionRange: String by project
|
||||
|
||||
tasks.processResources {
|
||||
inputs.property("minecraftVersionRange", minecraftVersionRange)
|
||||
inputs.property("forgeVersionRange", forgeVersionRange)
|
||||
|
||||
expand(inputs.properties)
|
||||
}
|
||||
|
||||
tasks.jar {
|
||||
manifest {
|
||||
attributes("Specification-Title" to modId)
|
||||
attributes("Specification-Vendor" to modAuthor)
|
||||
attributes("Specification-Version" to "1")
|
||||
attributes("Implementation-Title" to modName)
|
||||
attributes("Implementation-Version" to archiveVersion)
|
||||
attributes("Implementation-Vendor" to modAuthor)
|
||||
}
|
||||
|
||||
finalizedBy("reobfJar")
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
package com.chylex.hee
|
||||
|
||||
import net.minecraftforge.fml.common.Mod
|
||||
|
||||
@Mod("hee")
|
||||
object HardcoreEnderExpansionMod
|
27
loaders/forge/src/main/resources/META-INF/mods.toml
Normal file
27
loaders/forge/src/main/resources/META-INF/mods.toml
Normal file
@@ -0,0 +1,27 @@
|
||||
modLoader="kotlinforforge"
|
||||
loaderVersion="[3.10,)"
|
||||
|
||||
license = "${license}"
|
||||
issueTrackerURL = "${issuesURL}"
|
||||
|
||||
[[mods]]
|
||||
modId = "${id}"
|
||||
displayName = "${name}"
|
||||
displayURL = "${modURL}"
|
||||
description = "${description}"
|
||||
authors = "${authorsURL}"
|
||||
version = "${version}"
|
||||
|
||||
[[dependencies.${id}]]
|
||||
modId = "minecraft"
|
||||
mandatory = true
|
||||
versionRange = "${minecraftVersionRange}"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
[[dependencies.${id}]]
|
||||
modId = "forge"
|
||||
mandatory = true
|
||||
versionRange = "${forgeVersionRange}"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
8
loaders/forge/src/main/resources/pack.mcmeta
Normal file
8
loaders/forge/src/main/resources/pack.mcmeta
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"pack": {
|
||||
"description": "${name}",
|
||||
"pack_format": 12,
|
||||
"forge:resource_pack_format": 12,
|
||||
"forge:data_pack_format": 10
|
||||
}
|
||||
}
|
@@ -1 +1,28 @@
|
||||
@file:Suppress("UnstableApiUsage")
|
||||
|
||||
rootProject.name = "hee"
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
maven(url = rootDir.resolve("gradle/plugins/repository"))
|
||||
maven(url = "https://maven.minecraftforge.net")
|
||||
maven(url = "https://maven.parchmentmc.org")
|
||||
maven(url = "https://repo.spongepowered.org/maven")
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("hee.forge") version "1"
|
||||
id("hee.java") version "1"
|
||||
id("hee.kotlin") version "1"
|
||||
id("hee.vanilla") version "1"
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
@Suppress("ConvertLambdaToReference")
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
include(":loaders:forge")
|
||||
|
@@ -1,8 +0,0 @@
|
||||
package com.chylex.hee
|
||||
|
||||
import net.neoforged.fml.common.Mod
|
||||
|
||||
@Mod(HardcoreEnderExpansion.ID)
|
||||
object HardcoreEnderExpansion {
|
||||
const val ID = "hee"
|
||||
}
|
@@ -1,26 +0,0 @@
|
||||
modLoader="kotlinforforge"
|
||||
loaderVersion = "${kotlinForForgeVersionRange}"
|
||||
|
||||
license = "MPL-2.0"
|
||||
issueTrackerURL = "https://github.com/chylex/Hardcore-Ender-Expansion-2/issues"
|
||||
|
||||
[[mods]]
|
||||
modId = "hee"
|
||||
displayName = "Hardcore Ender Expansion 2"
|
||||
displayURL = "https://hee.chylex.com"
|
||||
description = "WIP"
|
||||
version = "${version}"
|
||||
|
||||
[[dependencies.hee]]
|
||||
modId = "minecraft"
|
||||
type = "required"
|
||||
versionRange = "${minecraftVersionRange}"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
||||
[[dependencies.hee]]
|
||||
modId = "neoforge"
|
||||
type = "required"
|
||||
versionRange = "${neoForgeVersionRange}"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
Reference in New Issue
Block a user