diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2023-08-21 08:51:07 +0000 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2023-08-21 08:51:45 +0000 |
commit | fa5edccf8d37767c8f9d4dde9a5f65988dbe1242 (patch) | |
tree | df33b464151ace158c08c4903f13c1194fc4d7f5 /app | |
parent | 473792061d40a0027b57d65a97f3da06e4b8c7bd (diff) |
Use more of the new plugin syntax in the bff build.gradle files
- replace apply plugin with plugin {} block syntax
- ultimately the buildscript should be replaced, but that currently leads to a StackOverflow during the build
Issue-ID: PORTALNG-42
Change-Id: I6c65127c3f6b8e095ccffb7e930576461fd5901c
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index d219c24..4f07bd5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,8 +1,11 @@ -apply plugin: 'application' -apply plugin: 'org.springframework.boot' -apply plugin: 'com.gorylenko.gradle-git-properties' -apply plugin: 'jacoco' -apply plugin: 'com.diffplug.spotless' +plugins { + id 'application' + id 'org.springframework.boot' + id 'io.spring.dependency-management' + id 'com.gorylenko.gradle-git-properties' + id 'jacoco' + id 'com.diffplug.spotless' +} dependencyManagement { imports { |