summaryrefslogtreecommitdiffstats
path: root/openapi/build.gradle
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-08-22 09:58:20 +0000
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-08-22 10:05:58 +0000
commita42b5abcbb1bea0b20374500a2a294f31de1927a (patch)
tree142508e32ec0caef7c87edfb5428bc2fe6164a0f /openapi/build.gradle
parent6bd5a8e1de4307a55a1129e2f2015599ef00acf3 (diff)
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 <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'openapi/build.gradle')
-rw-r--r--openapi/build.gradle19
1 files changed, 19 insertions, 0 deletions
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