Skip to content

Commit a5c0abc

Browse files
committed
change modImplementation to modApi, add .gitignore
1 parent 997523f commit a5c0abc

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

.gitignore

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

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ dependencies {
2929
include(implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixinextras_version}")))
3030

3131
// Fabric API
32-
include(modImplementation "net.fabricmc.fabric-api:fabric-key-binding-api-v1:1.0.36+fb8d95da77")
33-
include(modImplementation "net.fabricmc.fabric-api:fabric-resource-loader-v0:0.2.7+c668f41583")
32+
include(modApi "net.fabricmc.fabric-api:fabric-key-binding-api-v1:1.0.36+fb8d95da77")
33+
include(modApi "net.fabricmc.fabric-api:fabric-resource-loader-v0:0.2.7+c668f41583")
3434
}
3535

3636
processResources {

0 commit comments

Comments
 (0)