Sync with master

This commit is contained in:
Telesphoreo 2022-04-07 12:38:59 -05:00
parent c0d3c6e82d
commit 8ad3f6dd7f
3 changed files with 34 additions and 4 deletions

18
.gitignore vendored
View file

@ -1,3 +1,15 @@
.gradle/
build/
.idea/
/.idea/
*.iml
/target/
# OS
.DS_Store
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Gradle
/build/
/.gradle/

19
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,19 @@
pipeline {
agent any
stages {
stage("build") {
steps {
withGradle {
sh "./gradlew build --no-daemon"
}
}
}
}
post {
always {
archiveArtifacts artifacts: "build/libs/*-SNAPSHOT.jar", fingerprint: true
discordSend description: "Jenkins", link: env.BUILD_URL, result: currentBuild.currentResult, title: JOB_NAME, webhookURL: env.BLACKOUT_WEBHOOK_URL
cleanWs()
}
}
}

View file

@ -28,7 +28,6 @@ def paperVersion = "1.17.1"
dependencies {
paperweightDevelopmentBundle("io.papermc.paper:dev-bundle:${paperVersion}-R0.1-SNAPSHOT")
library 'org.json:json:20211205'
library "org.projectlombok:lombok:1.18.22"
annotationProcessor "org.projectlombok:lombok:1.18.22"