1

build: сборка Jenkins

This commit is contained in:
2025-08-18 11:35:16 +03:00
parent 7001d57332
commit 1a83e4780e

11
.jenkinsfile Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './gradlew shadowJar'
}
}
}
}