From 190ea9f989f86fcf7146cb146b0499be26ac4b18 Mon Sep 17 00:00:00 2001 From: hizmailovich Date: Mon, 15 Jan 2024 15:33:35 +0300 Subject: [PATCH 1/2] Resolved #2 --- .rultor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .rultor.yml diff --git a/.rultor.yml b/.rultor.yml new file mode 100644 index 0000000..9d0d37e --- /dev/null +++ b/.rultor.yml @@ -0,0 +1,18 @@ +architect: + - h1alexbel +docker: + image: l3r8y/rultor-image:1.0.3 +merge: + script: | + mvn clean install --errors -Dstyle.color=never +# @todo #2:60min Create release script to rultor configuration. +# We should create release script that will be executed by Rultor.com. +# Probably it can be a release inside the GitHub with a new tag, +# and build+push Docker image to the private Docker registry. +release: + script: + - "No release script for now" +# @todo #2:90min Create deploy script for rultor configuration. +# We should create deploy script that will deliver our Java software +# into some target platform. For now, we assuming that it will be +# Cloud VM with public IP, and SSH connection. From 9fa6795999ee8d201547636f743a1b210f9541d4 Mon Sep 17 00:00:00 2001 From: hizmailovich Date: Mon, 15 Jan 2024 15:38:19 +0300 Subject: [PATCH 2/2] Unused flag removed --- .rultor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rultor.yml b/.rultor.yml index 9d0d37e..40e6423 100644 --- a/.rultor.yml +++ b/.rultor.yml @@ -4,7 +4,7 @@ docker: image: l3r8y/rultor-image:1.0.3 merge: script: | - mvn clean install --errors -Dstyle.color=never + mvn clean install --errors # @todo #2:60min Create release script to rultor configuration. # We should create release script that will be executed by Rultor.com. # Probably it can be a release inside the GitHub with a new tag,