Remove Jenkinsfile (my vps can't handle it), update dependency declaration

Signed-off-by: Quentin Legot <legotquentin@gmail.com>
This commit is contained in:
Quentin Legot 2023-02-14 14:54:14 +01:00
parent d71ff26617
commit 9a2b0182df
2 changed files with 4 additions and 26 deletions

23
Jenkinsfile vendored
View File

@ -1,23 +0,0 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
withGradle {
sh 'gradle build'
}
}
}
stage('Test') {
steps {
echo 'Testing...'
withGradle {
sh 'gradle test'
}
}
}
}
}

View File

@ -25,9 +25,10 @@
"Task.mixins.json" "Task.mixins.json"
], ],
"depends": { "depends": {
"fabricloader": ">=0.14.12", "fabricloader": "^0.14.12",
"fabric": "*", "fabric-api": "*",
"minecraft": "1.19.3" "minecraft": "1.19.3",
"java": ">=17"
} }
} }