We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37f5649 commit 06ec92bCopy full SHA for 06ec92b
build.gradle
@@ -42,6 +42,10 @@ tasks.withType(JavaCompile).configureEach {
42
options.encoding = 'UTF-8'
43
}
44
45
+tasks.withType(Jar).configureEach {
46
+ archiveVersion.set(project.minecraft.version + '-' + project.version)
47
+}
48
+
49
jar {
50
manifest {
51
attributes 'FMLCorePluginContainsFMLMod': 'false' // TODO: Not a mod
gradle.properties
@@ -1,6 +1,7 @@
1
# Project
2
group=me.theandrey
3
version=1.0
4
+minecraft.version=1.7.10
5
6
# Repositories
7
minecraftforge.repository.url=https://files.minecraftforge.net/maven
0 commit comments