Fix Jenkinsfile
ScriptCraft/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-04-29 15:23:18 -04:00
parent 267f2a3c44
commit a57c8d705c
2 changed files with 4 additions and 6 deletions

4
Jenkinsfile vendored
View File

@ -1,8 +1,6 @@
pipeline { pipeline {
agent { agent {
dockerfile { dockerfile true
args '-v /data/maven:/data/maven'
}
} }
stages { stages {
stage('Setup') { stage('Setup') {

View File

@ -16,8 +16,8 @@ minecraft {
} }
repositories { repositories {
flatDir { maven {
dirs 'libs' url 'https://maven.thebrokenrail.com/'
} }
} }
@ -26,7 +26,7 @@ dependencies {
mappings "net.fabricmc:yarn:${project.minecraft_version}+build.${project.yarn_build}:v2" mappings "net.fabricmc:yarn:${project.minecraft_version}+build.${project.yarn_build}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}" modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"
modImplementation name: 'scriptcraft' modImplementation 'com.thebrokenrail:scriptcraft'
} }
apply from: './typescript.build.gradle' apply from: './typescript.build.gradle'