Update Versioning
ScriptCraft/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-04-29 15:41:58 -04:00
parent a57c8d705c
commit 0fee6d0022
3 changed files with 5 additions and 3 deletions

View File

@ -9,7 +9,7 @@ compileJava {
}
archivesBaseName = project.archives_base_name
version = project.mod_version as Object
version = project.minecraft_version as Object
group = project.maven_group as Object
minecraft {
@ -65,6 +65,8 @@ jar {
publishing {
publications {
mavenJava(MavenPublication) {
artifactId archivesBaseName
artifact(remapJar) {
builtBy remapJar
}

View File

@ -26,7 +26,8 @@ dependencies {
mappings "net.fabricmc:yarn:${project.minecraft_version}+build.${project.yarn_build}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"
modImplementation 'com.thebrokenrail:scriptcraft'
modImplementation "com.thebrokenrail:scriptcraft:${project.minecraft_version}"
include "com.thebrokenrail:scriptcraft:${project.minecraft_version}"
}
apply from: './typescript.build.gradle'

View File

@ -8,7 +8,6 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.8.2+build.194
# Mod Properties
mod_version = 1.0.0-SNAPSHOT
maven_group = com.thebrokenrail
archives_base_name = scriptcraft