tangled
alpha
login
or
join now
codexarchonic.nekoweb.org
/
ProjectInfinity
0
fork
atom
Inspired by 2020's April Fools' 20w14infinite Snapshot, this mod brings endless randomly generated dimensions into Minecraft.
0
fork
atom
overview
issues
6
pulls
pipelines
forgix support
cassian.cc
1 year ago
4fe429b7
f3607040
+9
2 changed files
expand all
collapse all
unified
split
.gitignore
build.gradle
+1
.gitignore
···
4
4
build/
5
5
out/
6
6
classes/
7
7
+
Merged/
7
8
8
9
# eclipse
9
10
+8
build.gradle
···
2
2
id 'dev.architectury.loom' version '1.7-SNAPSHOT' apply false
3
3
id 'architectury-plugin' version '3.4-SNAPSHOT'
4
4
id 'com.github.johnrengelman.shadow' version '8.1.1' apply false
5
5
+
id "io.github.pacifistmc.forgix" version "1.2.9"
5
6
}
6
7
7
8
architectury {
8
9
minecraft = project.minecraft_version
10
10
+
}
11
11
+
12
12
+
forgix {
13
13
+
group = "net.lerariemann.infinity"
14
14
+
mergedJarName = "infinite-dimensions-${mod_version}.jar"
9
15
}
10
16
11
17
allprojects {
···
70
76
// retrieving dependencies.
71
77
}
72
78
}
79
79
+
build.finalizedBy(mergeJars)
80
80
+
assemble.finalizedBy(mergeJars)
73
81
}