Skip to content

Commit f734fa3

Browse files
committed
Initial Commit
0 parents  commit f734fa3

25 files changed

+1188
-0
lines changed

.gitattributes

+9
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

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
strategy:
12+
matrix:
13+
# Use these Java versions
14+
java: [
15+
21, # Current Java LTS
16+
]
17+
runs-on: ubuntu-22.04
18+
steps:
19+
- name: checkout repository
20+
uses: actions/checkout@v4
21+
- name: validate gradle wrapper
22+
uses: gradle/wrapper-validation-action@v2
23+
- name: setup jdk ${{ matrix.java }}
24+
uses: actions/setup-java@v4
25+
with:
26+
java-version: ${{ matrix.java }}
27+
distribution: 'microsoft'
28+
- name: make gradle wrapper executable
29+
run: chmod +x ./gradlew
30+
- name: build
31+
run: ./gradlew build
32+
- name: capture build artifacts
33+
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: Artifacts
37+
path: build/libs/

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
src/main/generated/.cache
35+
36+
# java
37+
38+
hs_err_*.log
39+
replay_*.log
40+
*.hprof
41+
*.jfr

build.gradle

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
plugins {
2+
id 'fabric-loom' version '1.7-SNAPSHOT'
3+
id 'maven-publish'
4+
}
5+
6+
version = project.mod_version
7+
group = project.maven_group
8+
9+
base {
10+
archivesName = project.archives_base_name
11+
}
12+
13+
repositories {
14+
maven {
15+
name = 'GeckoLib'
16+
url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/'
17+
content {
18+
includeGroupByRegex("software\\.bernie.*")
19+
includeGroup("com.eliotlash.mclib")
20+
}
21+
}
22+
}
23+
24+
fabricApi {
25+
configureDataGeneration()
26+
}
27+
28+
dependencies {
29+
minecraft "com.mojang:minecraft:${project.minecraft_version}"
30+
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
31+
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
32+
33+
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
34+
35+
modImplementation("software.bernie.geckolib:geckolib-fabric-${minecraft_version}:${geckolib_version}")
36+
implementation("com.eliotlash.mclib:mclib:20")
37+
}
38+
39+
processResources {
40+
inputs.property "version", project.version
41+
42+
filesMatching("fabric.mod.json") {
43+
expand "version": project.version
44+
}
45+
}
46+
47+
tasks.withType(JavaCompile).configureEach {
48+
it.options.release = 17
49+
}
50+
51+
java {
52+
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
53+
// if it is present.
54+
// If you remove this line, sources will not be generated.
55+
withSourcesJar()
56+
57+
sourceCompatibility = JavaVersion.VERSION_17
58+
targetCompatibility = JavaVersion.VERSION_17
59+
}
60+
61+
jar {
62+
from("LICENSE") {
63+
rename { "${it}_${project.base.archivesName.get()}"}
64+
}
65+
}
66+
67+
// configure the maven publication
68+
publishing {
69+
publications {
70+
create("mavenJava", MavenPublication) {
71+
artifactId = project.archives_base_name
72+
from components.java
73+
}
74+
}
75+
76+
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
77+
repositories {
78+
// Add repositories to publish to here.
79+
// Notice: This block does NOT have the same function as the block in the top level.
80+
// The repositories here will be used for publishing your artifact, not for
81+
// retrieving dependencies.
82+
}
83+
}

gradle.properties

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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.20.1
8+
yarn_mappings=1.20.1+build.10
9+
loader_version=0.16.2
10+
11+
# Mod Properties
12+
mod_version=1.0.0
13+
maven_group=org.infernalstudios.infernalexp
14+
archives_base_name=infernalexp
15+
16+
# Dependencies
17+
fabric_version=0.92.2+1.20.1
18+
geckolib_version=4.4.6

gradle/wrapper/gradle-wrapper.jar

42.4 KB
Binary file not shown.
+7
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.8-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)