Skip to content

Commit 3aad74f

Browse files
committed
Merge branch 'fabric-1.21' into fabric-1.21.8
2 parents dd49d51 + 2d6c30e commit 3aad74f

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,36 @@ bin/
2525

2626
# fabric
2727
run/
28+
29+
# java
30+
hs_err_*.log
31+
replay_*.log
32+
*.hprof
33+
*.jfr
34+
35+
# java results
36+
*.class
37+
38+
# Please use maven. Modrinth hosts one if you're depending on other mods.
39+
# https://support.modrinth.com/en/articles/8801191-modrinth-maven
40+
*.jar
41+
42+
# scala results
43+
*.tasty
44+
45+
# generally don't publish these
46+
# If you *need* to commit any of these files, use !path-to/file.ext to allow it.
47+
# Beware that these files may contain your personal information, or be generally unwanted or opaque.
48+
*.zip
49+
*.log
50+
*.log.gz
51+
52+
# Minecraft-specific junk files
53+
# You shouldn't be including these in the repo to begin with, but I don't know what you do.
54+
crash-*.txt
55+
disconnect-*.txt
56+
57+
# custom
58+
# Examples of what you might want to put here:
59+
# generated/
60+
# .local/

build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@ version = "$modVersion+$branchName"
1010
base.archivesName = project.slug
1111

1212
repositories {
13+
// Modrinth Maven - see: https://support.modrinth.com/en/articles/8801191-modrinth-maven
14+
// To use in a dependency, use: maven.modrinth:mod-id
15+
exclusiveContent {
16+
forRepository {
17+
maven {
18+
name = "Modrinth"
19+
url = "https://api.modrinth.com/maven"
20+
}
21+
}
22+
filter {
23+
includeGroup("maven.modrinth")
24+
}
25+
}
1326
}
1427

1528
dependencies {

0 commit comments

Comments
 (0)