Skip to content

Commit 964b3de

Browse files
committed
Update build.gradle
1 parent 9fa4816 commit 964b3de

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ repositories {
1616
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
1717
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
1818
// for more information about repositories.
19+
exclusiveContent {
20+
forRepository {
21+
maven {
22+
name = "Modrinth"
23+
url = "https://api.modrinth.com/maven"
24+
}
25+
}
26+
filter {
27+
includeGroup "maven.modrinth"
28+
}
29+
}
1930
}
2031

2132
fabricApi {
@@ -31,8 +42,8 @@ dependencies {
3142
// Fabric API. This is technically optional, but you probably want it anyway.
3243
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
3344

34-
modImplementation files("dep/strangeitems-1.5.0.jar")
35-
include files("dep/strangeitems-1.5.0.jar")
45+
modImplementation "maven.modrinth:embin-strange_items:1.5.0-fabric,1.21.11"
46+
include "maven.modrinth:embin-strange_items:1.5.0-fabric,1.21.11"
3647
//modImplementation include("eu.pb4:sgui:1.6.0+1.21")
3748

3849
}

0 commit comments

Comments
 (0)