Skip to content

Commit fc33474

Browse files
committed
initial commit
0 parents  commit fc33474

29 files changed

+1369
-0
lines changed

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Automatically build the project and run any configured tests for every push
2+
# and submitted pull request. This can help catch issues that only occur on
3+
# certain platforms or Java versions, and provides a first line of defence
4+
# against bad commits.
5+
6+
name: build
7+
on: [pull_request, push]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-24.04
12+
steps:
13+
- name: checkout repository
14+
uses: actions/checkout@v4
15+
- name: validate gradle wrapper
16+
uses: gradle/actions/wrapper-validation@v4
17+
- name: setup jdk
18+
uses: actions/setup-java@v4
19+
with:
20+
java-version: '21'
21+
distribution: 'microsoft'
22+
- name: make gradle wrapper executable
23+
run: chmod +x ./gradlew
24+
- name: build
25+
run: ./gradlew build
26+
- name: capture build artifacts
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: Artifacts
30+
path: build/libs/

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# gradle
2+
3+
.gradle/
4+
build/
5+
out/
6+
classes/
7+
8+
# eclipse
9+
10+
*.launch
11+
12+
# idea
13+
14+
.idea/
15+
*.iml
16+
*.ipr
17+
*.iws
18+
19+
# vscode
20+
21+
.settings/
22+
.vscode/
23+
bin/
24+
.classpath
25+
.project
26+
27+
# macos
28+
29+
*.DS_Store
30+
31+
# fabric
32+
33+
run/
34+
35+
# java
36+
37+
hs_err_*.log
38+
replay_*.log
39+
*.hprof
40+
*.jfr

LICENSE

Lines changed: 504 additions & 0 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
plugins {
2+
id 'fabric-loom' version "${loom_version}"
3+
id 'maven-publish'
4+
}
5+
6+
version = project.mod_version
7+
group = project.maven_group
8+
9+
base {
10+
archivesName = "console-adv-sounds"
11+
}
12+
13+
repositories {
14+
// Add repositories to retrieve artifacts from in here.
15+
// You should only use this when depending on other mods because
16+
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
17+
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
18+
// for more information about repositories.
19+
maven { url = 'https://maven.nucleoid.xyz/' }
20+
maven {
21+
name = "Terraformers"
22+
url = "https://maven.terraformersmc.com/"
23+
}
24+
}
25+
26+
dependencies {
27+
// To change the versions see the gradle.properties file
28+
minecraft "com.mojang:minecraft:${project.minecraft_version}"
29+
mappings loom.officialMojangMappings()
30+
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
31+
32+
// Fabric API. This is technically optional, but you probably want it anyway.
33+
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
34+
35+
modCompileOnly "com.terraformersmc:modmenu:7.2.2", {
36+
transitive false
37+
}
38+
39+
}
40+
41+
processResources {
42+
inputs.property "version", project.version
43+
44+
filesMatching("fabric.mod.json") {
45+
expand "version": inputs.properties.version
46+
}
47+
}
48+
49+
tasks.withType(JavaCompile).configureEach {
50+
it.options.release = 21
51+
}
52+
53+
java {
54+
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
55+
// if it is present.
56+
// If you remove this line, sources will not be generated.
57+
withSourcesJar()
58+
59+
sourceCompatibility = JavaVersion.VERSION_21
60+
targetCompatibility = JavaVersion.VERSION_21
61+
}
62+
63+
jar {
64+
inputs.property "archivesName", project.base.archivesName
65+
66+
from("LICENSE") {
67+
rename { "${it}_${inputs.properties.archivesName}"}
68+
}
69+
}
70+
71+
// configure the maven publication
72+
publishing {
73+
publications {
74+
create("mavenJava", MavenPublication) {
75+
artifactId = project.archives_base_name
76+
from components.java
77+
}
78+
}
79+
80+
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
81+
repositories {
82+
// Add repositories to publish to here.
83+
// Notice: This block does NOT have the same function as the block in the top level.
84+
// The repositories here will be used for publishing your artifact, not for
85+
// retrieving dependencies.
86+
}
87+
}

gradle.properties

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Done to increase the memory available to gradle.
2+
org.gradle.jvmargs=-Xmx1G
3+
org.gradle.parallel=true
4+
5+
# Fabric Properties
6+
# check these on https://fabricmc.net/develop
7+
minecraft_version=1.21.5
8+
loader_version=0.16.14
9+
loom_version=1.11-SNAPSHOT
10+
11+
# Mod Properties
12+
mod_version=1.0.16
13+
maven_group=standard.mod.standard
14+
archives_base_name=jimmy-smiths
15+
16+
# Dependencies
17+
fabric_version=0.128.1+1.21.5

gradle/wrapper/gradle-wrapper.jar

42.7 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)