From 4800f8e18c8668fb2ca3d6bc74f335bd19b91a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Tue, 16 Jul 2024 15:29:34 +0200 Subject: [PATCH] Enable plugin and configure the 3.3.x generation See gh-61 --- build.gradle | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 build.gradle diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..4cd3e33 --- /dev/null +++ b/build.gradle @@ -0,0 +1,11 @@ +plugins { + id "org.springframework.lifecycle.smoke-test-ci" +} + +smokeTests { + '3.3.x' { + branch = 'main' + location = "../main" + cronSchedule = "10 0 * * *" + } +} \ No newline at end of file