mirror of
https://github.com/chylex/Hardcore-Ender-Expansion-2.git
synced 2025-09-16 17:24:47 +02:00
Compare commits
3 Commits
new
...
f162d24131
Author | SHA1 | Date | |
---|---|---|---|
f162d24131
|
|||
20ae417064
|
|||
5864c6273d
|
100
build.gradle.kts
100
build.gradle.kts
@@ -1,110 +1,10 @@
|
||||
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
|
||||
}
|
||||
|
||||
idea {
|
||||
module {
|
||||
excludeDirs.add(file("gradle"))
|
||||
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)
|
||||
}
|
||||
}
|
||||
|
@@ -3,16 +3,13 @@ group=com.chylex.hee
|
||||
version=2.0.0-dev
|
||||
|
||||
# Dependencies
|
||||
javaVersion=21
|
||||
minecraftVersion=1.21
|
||||
parchmentVersion=2024.07.07
|
||||
neoForgeVersion=21.0.96-beta
|
||||
kotlinForForgeVersion=5.4.0
|
||||
neoForgeVersion=20.4.162-beta
|
||||
kotlinForForgeVersion=4.10.0
|
||||
|
||||
# Constraints
|
||||
minecraftVersionRange=[1.21,)
|
||||
neoForgeVersionRange=[21.0.96-beta,)
|
||||
kotlinForForgeVersionRange=[5.4.0,)
|
||||
minecraftVersionRange=[1.20.4,)
|
||||
neoForgeVersionRange=(20.4.161,)
|
||||
kotlinForForgeVersionRange=[4.10.0,)
|
||||
|
||||
# Gradle
|
||||
org.gradle.jvmargs=-Xmx3G
|
||||
|
10
gradle/plugins/.gitignore
vendored
Normal file
10
gradle/plugins/.gitignore
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# IntelliJ
|
||||
|
||||
/.idea/
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
|
||||
# Gradle
|
||||
|
||||
/gradle/wrapper/gradle-wrapper.jar
|
31
gradle/plugins/build.gradle.kts
Normal file
31
gradle/plugins/build.gradle.kts
Normal file
@@ -0,0 +1,31 @@
|
||||
plugins {
|
||||
idea
|
||||
`kotlin-dsl`
|
||||
`maven-publish`
|
||||
}
|
||||
|
||||
group = "com.chylex.hee.gradle"
|
||||
version = "1"
|
||||
|
||||
idea {
|
||||
module {
|
||||
excludeDirs.add(file("gradle"))
|
||||
excludeDirs.add(file("repository"))
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
maven(url = "https://maven.neoforged.net/releases") { name = "NeoForge" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(group = "net.neoforged.gradle", name = "userdev", version = "7.0.93")
|
||||
implementation(group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version = "1.9.22")
|
||||
}
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
maven(url = projectDir.resolve("repository"))
|
||||
}
|
||||
}
|
6
gradle/plugins/gradle.properties
Normal file
6
gradle/plugins/gradle.properties
Normal file
@@ -0,0 +1,6 @@
|
||||
# Gradle
|
||||
org.gradle.caching=true
|
||||
org.gradle.parallel=true
|
||||
|
||||
# Publishing
|
||||
systemProp.org.gradle.internal.publish.checksums.insecure=true
|
7
gradle/plugins/gradle/wrapper/gradle-wrapper.properties
vendored
Symbolic link
7
gradle/plugins/gradle/wrapper/gradle-wrapper.properties
vendored
Symbolic link
@@ -0,0 +1,7 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
1035eba8627d98cf4db7ab08ae060c50
|
@@ -0,0 +1 @@
|
||||
570451c98782d0208a4f20c6f7e0a00534ef40ed
|
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"formatVersion": "1.1",
|
||||
"component": {
|
||||
"group": "com.chylex.hee.gradle",
|
||||
"module": "hee-gradle-plugins",
|
||||
"version": "1",
|
||||
"attributes": {
|
||||
"org.gradle.status": "release"
|
||||
}
|
||||
},
|
||||
"createdBy": {
|
||||
"gradle": {
|
||||
"version": "8.6"
|
||||
}
|
||||
},
|
||||
"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": "hee-gradle-plugins-1.jar",
|
||||
"url": "hee-gradle-plugins-1.jar",
|
||||
"size": 727705,
|
||||
"sha512": "4d1cd9afa350376ca3f3fe06656ab4ea094719313a6b1b6d929b93ae709d3e94d10926dcd9dfeb2a168138f0832eacfa02a84361a39aa21ec03cc57a8e97a703",
|
||||
"sha256": "1bbf6d006f5c4fdc2aeb843bcaefa9b83a0ca123e5e62e04320764a99d9c5c9d",
|
||||
"sha1": "570451c98782d0208a4f20c6f7e0a00534ef40ed",
|
||||
"md5": "1035eba8627d98cf4db7ab08ae060c50"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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.neoforged.gradle",
|
||||
"module": "userdev",
|
||||
"version": {
|
||||
"requires": "7.0.93"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "org.jetbrains.kotlin",
|
||||
"module": "kotlin-gradle-plugin",
|
||||
"version": {
|
||||
"requires": "1.9.22"
|
||||
}
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "hee-gradle-plugins-1.jar",
|
||||
"url": "hee-gradle-plugins-1.jar",
|
||||
"size": 727705,
|
||||
"sha512": "4d1cd9afa350376ca3f3fe06656ab4ea094719313a6b1b6d929b93ae709d3e94d10926dcd9dfeb2a168138f0832eacfa02a84361a39aa21ec03cc57a8e97a703",
|
||||
"sha256": "1bbf6d006f5c4fdc2aeb843bcaefa9b83a0ca123e5e62e04320764a99d9c5c9d",
|
||||
"sha1": "570451c98782d0208a4f20c6f7e0a00534ef40ed",
|
||||
"md5": "1035eba8627d98cf4db7ab08ae060c50"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@@ -0,0 +1 @@
|
||||
b89dd9e07f65e5dd3863434a8169d7c3
|
@@ -0,0 +1 @@
|
||||
8de05eb812a643cc9939fb9d1a5d6d4a8a6d5220
|
@@ -0,0 +1,26 @@
|
||||
<?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>hee-gradle-plugins</artifactId>
|
||||
<version>1</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.neoforged.gradle</groupId>
|
||||
<artifactId>userdev</artifactId>
|
||||
<version>7.0.93</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-gradle-plugin</artifactId>
|
||||
<version>1.9.22</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
8d1141435ff5bbac0d3a2a4164d933f6
|
@@ -0,0 +1 @@
|
||||
b9bcb22e5e722ddc506c20c71c307819a4221633
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>hee-gradle-plugins</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20240220150718</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
eff02692a3a3a2e7ccbdd3e53e192f5d
|
@@ -0,0 +1 @@
|
||||
c4d2a7945a7acd963d6ed5daeedc34c6f50db046
|
@@ -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>hee-gradle-plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
f196bd1a3bc41dee8da6f62de657232d
|
@@ -0,0 +1 @@
|
||||
28057427bd53cdd856eaf9ee66a132d9a1125be1
|
@@ -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>20240220150710</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
b2d173f618128699caeeeefb57bf0835
|
@@ -0,0 +1 @@
|
||||
25158a2318ae386093e3c7fd2f057778f4520cdc
|
@@ -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>hee-gradle-plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
8c4f03e97711738d21870d5a9918bc7e
|
@@ -0,0 +1 @@
|
||||
32e486aa78a2b3428b3f1151dbc7fbf674d4b009
|
@@ -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>20240220150710</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
05d12570d8c5458f7f23035e5c255647
|
@@ -0,0 +1 @@
|
||||
6a7855f617a3cfd901fc00b4290ed9c8a1bbe44b
|
@@ -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.library</groupId>
|
||||
<artifactId>hee.library.gradle.plugin</artifactId>
|
||||
<version>1</version>
|
||||
<packaging>pom</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.chylex.hee.gradle</groupId>
|
||||
<artifactId>hee-gradle-plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
03c0e6be358b44308048f2cf90e69e02
|
@@ -0,0 +1 @@
|
||||
88fbfa80926a52378fa2f3e98d1ebbbb4e444a90
|
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>hee.library</groupId>
|
||||
<artifactId>hee.library.gradle.plugin</artifactId>
|
||||
<versioning>
|
||||
<latest>1</latest>
|
||||
<release>1</release>
|
||||
<versions>
|
||||
<version>1</version>
|
||||
</versions>
|
||||
<lastUpdated>20240220150710</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
f09c73a0c15f8e272c7934a0f06f2612
|
@@ -0,0 +1 @@
|
||||
21b7dc20878f18200f68478e937812d25689acf7
|
@@ -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>hee-gradle-plugins</artifactId>
|
||||
<version>1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@@ -0,0 +1 @@
|
||||
e600fee6a3545c69c77dc076b28eb823
|
@@ -0,0 +1 @@
|
||||
7e65b2d10962b59d1ddc7cfcf54b6db6c21c384b
|
@@ -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>20240220150710</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
@@ -0,0 +1 @@
|
||||
1060d15fe527b22c7e71803545d79623
|
@@ -0,0 +1 @@
|
||||
fe93a19bdacdf824857a804d8f5d28a908be7b7f
|
1
gradle/plugins/settings.gradle.kts
Normal file
1
gradle/plugins/settings.gradle.kts
Normal file
@@ -0,0 +1 @@
|
||||
rootProject.name = "hee-gradle-plugins"
|
21
gradle/plugins/src/main/kotlin/hee.java.gradle.kts
Normal file
21
gradle/plugins/src/main/kotlin/hee.java.gradle.kts
Normal file
@@ -0,0 +1,21 @@
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
configureEach {
|
||||
|
||||
java.setSrcDirs(listOf(file("./$name/java")))
|
||||
resources.setSrcDirs(listOf(file("./$name/resources")))
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion.set(JavaLanguageVersion.of(17))
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
options.encoding = "UTF-8"
|
||||
}
|
24
gradle/plugins/src/main/kotlin/hee.kotlin.gradle.kts
Normal file
24
gradle/plugins/src/main/kotlin/hee.kotlin.gradle.kts
Normal file
@@ -0,0 +1,24 @@
|
||||
val kotlinForForgeVersion: String by project
|
||||
|
||||
plugins {
|
||||
id("hee.java")
|
||||
kotlin("jvm")
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
configureEach {
|
||||
java.setSrcDirs(emptyList<File>())
|
||||
kotlin.setSrcDirs(listOf(file("./$name/kotlin")))
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven(url = "https://thedarkcolour.github.io/KotlinForForge") {
|
||||
name = "KotlinForForge"
|
||||
content { includeGroup("thedarkcolour") }
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("thedarkcolour:kotlinforforge-neoforge:${kotlinForForgeVersion}")
|
||||
}
|
11
gradle/plugins/src/main/kotlin/hee.library.gradle.kts
Normal file
11
gradle/plugins/src/main/kotlin/hee.library.gradle.kts
Normal file
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
id("hee.java")
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
resources {
|
||||
srcDir(rootProject.layout.projectDirectory.dir("resources/common"))
|
||||
}
|
||||
}
|
||||
}
|
12
gradle/plugins/src/main/kotlin/hee.minecraft.gradle.kts
Normal file
12
gradle/plugins/src/main/kotlin/hee.minecraft.gradle.kts
Normal file
@@ -0,0 +1,12 @@
|
||||
val neoForgeVersion: String by project
|
||||
|
||||
plugins {
|
||||
id("hee.java")
|
||||
id("net.neoforged.gradle.userdev")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.neoforged:neoforge:$neoForgeVersion")
|
||||
}
|
||||
|
||||
runs.clear()
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
2
gradlew
vendored
2
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/HEAD/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/.
|
||||
|
1
resources/common/META-INF/MANIFEST.MF
Normal file
1
resources/common/META-INF/MANIFEST.MF
Normal file
@@ -0,0 +1 @@
|
||||
FMLModType: GAMELIBRARY
|
@@ -1 +1,22 @@
|
||||
rootProject.name = "hee"
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
maven(url = "https://maven.neoforged.net/releases") { name = "NeoForge" }
|
||||
maven(url = rootDir.resolve("gradle/plugins/repository"))
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("hee.java") version "1"
|
||||
id("hee.kotlin") version "1"
|
||||
id("hee.library") version "1"
|
||||
id("hee.minecraft") version "1"
|
||||
}
|
||||
}
|
||||
|
||||
include(":neoforge")
|
||||
project(":neoforge").projectDir = file("./src/neoforge")
|
||||
|
||||
include(":content")
|
||||
project(":content").projectDir = file("./src/content")
|
||||
|
5
src/content/build.gradle.kts
Normal file
5
src/content/build.gradle.kts
Normal file
@@ -0,0 +1,5 @@
|
||||
plugins {
|
||||
id("hee.kotlin")
|
||||
id("hee.library")
|
||||
id("hee.minecraft")
|
||||
}
|
7
src/content/main/kotlin/com/chylex/hee/content/Test.kt
Normal file
7
src/content/main/kotlin/com/chylex/hee/content/Test.kt
Normal file
@@ -0,0 +1,7 @@
|
||||
package com.chylex.hee.content
|
||||
|
||||
object Test {
|
||||
fun test() {
|
||||
println("Test")
|
||||
}
|
||||
}
|
53
src/neoforge/build.gradle.kts
Normal file
53
src/neoforge/build.gradle.kts
Normal file
@@ -0,0 +1,53 @@
|
||||
val minecraftVersionRange: String by project
|
||||
val neoForgeVersionRange: String by project
|
||||
val kotlinForForgeVersionRange: String by project
|
||||
|
||||
plugins {
|
||||
id("hee.kotlin")
|
||||
id("hee.minecraft")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":content"))
|
||||
}
|
||||
|
||||
runs {
|
||||
configureEach {
|
||||
fun modSource(project: Project) {
|
||||
modSource(project.sourceSets.main.get())
|
||||
}
|
||||
|
||||
modSource(project)
|
||||
modSource(project(":content"))
|
||||
|
||||
workingDirectory = rootProject.layout.projectDirectory.dir("run").asFile
|
||||
systemProperty("forge.logging.console.level", "debug")
|
||||
}
|
||||
|
||||
create("client")
|
||||
create("server")
|
||||
}
|
||||
|
||||
tasks.processResources {
|
||||
inputs.property("version", version)
|
||||
inputs.property("minecraftVersionRange", minecraftVersionRange)
|
||||
inputs.property("neoForgeVersionRange", neoForgeVersionRange)
|
||||
inputs.property("kotlinForForgeVersionRange", kotlinForForgeVersionRange)
|
||||
|
||||
filesMatching("META-INF/mods.toml") {
|
||||
expand(inputs.properties)
|
||||
}
|
||||
}
|
||||
|
||||
tasks.jar {
|
||||
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,
|
||||
)
|
||||
}
|
||||
}
|
@@ -1,8 +1,13 @@
|
||||
package com.chylex.hee
|
||||
|
||||
import com.chylex.hee.content.Test
|
||||
import net.neoforged.fml.common.Mod
|
||||
|
||||
@Mod(HardcoreEnderExpansion.ID)
|
||||
object HardcoreEnderExpansion {
|
||||
const val ID = "hee"
|
||||
|
||||
init {
|
||||
Test.test()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user