File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 2525
2626# fabric
2727run /
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/
Original file line number Diff line number Diff line change @@ -10,6 +10,19 @@ version = "$modVersion+$branchName"
1010base. archivesName = project. slug
1111
1212repositories {
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
1528dependencies {
You can’t perform that action at this time.
0 commit comments