From 1a83e4780e41b76dce4c765ba1e430045b7b8904 Mon Sep 17 00:00:00 2001 From: Voomra Date: Mon, 18 Aug 2025 11:35:16 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B0?= =?UTF-8?q?=20Jenkins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .jenkinsfile diff --git a/.jenkinsfile b/.jenkinsfile new file mode 100644 index 0000000..c127e96 --- /dev/null +++ b/.jenkinsfile @@ -0,0 +1,11 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + sh './gradlew shadowJar' + } + } + } +}