From a42b5abcbb1bea0b20374500a2a294f31de1927a Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Tue, 22 Aug 2023 09:58:20 +0000 Subject: Migrate away from legacy gradle buildscript syntax - replace the buildscript way of declaring plugins with the plugins {} block - have duplicate openapi client declarations since programmatic way of registering openapiGenerate task does not seem to be working Issue-ID: PORTALNG-47 Change-Id: I9e007127726e558363409d1b224dc7b2b9e52719 Signed-off-by: Fiete Ostkamp --- openapi/build.gradle | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 openapi/build.gradle (limited to 'openapi/build.gradle') diff --git a/openapi/build.gradle b/openapi/build.gradle new file mode 100644 index 0000000..0b3e556 --- /dev/null +++ b/openapi/build.gradle @@ -0,0 +1,19 @@ +plugins { + id 'java' + id 'io.spring.dependency-management' +} + +dependencies { + implementation project('server') + implementation project('client-portal-history') + implementation project('client-portal-keycloak') + implementation project('client-portal-prefs') +} +ext { + openapiVersion = '7.0.0-beta' +} +subprojects { + repositories { + mavenCentral() + } +} \ No newline at end of file -- cgit 1.2.3-korg