refactor(tests): use webTestClient
[portal-ng/preferences.git] / settings.gradle
1 // Centrally declare plugin versions here
2 pluginManagement {
3   // https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_version_management
4   plugins {
5     id 'io.spring.dependency-management' version '1.1.7'
6     id 'org.springframework.boot' version '3.5.4'
7     id 'com.github.hierynomus.license' version '0.16.1'
8     id 'com.gorylenko.gradle-git-properties' version '2.5.2'
9     id 'org.openapi.generator' version '7.14.0'
10     id 'com.diffplug.spotless' version '7.2.1'
11   }
12   // https://docs.gradle.org/current/userguide/plugins.html#sec:custom_plugin_repositories
13   repositories {
14     mavenCentral()
15     gradlePluginPortal()
16   }
17 }
18
19 // This is a preview feature, enable in the future and remove repositories blocks from sub build.gradles
20 // https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:centralized-repository-declaration
21 // dependencyResolutionManagement {
22 //   maven {
23 //     url "${maven_central_url}"
24 //     credentials {
25 //       username = "${artifactory_user}"
26 //       password = "${artifactory_password}"
27 //     }
28 //   }
29 //   maven {
30 //     url "${gradle_plugins_url}"
31 //     credentials {
32 //       username = "${artifactory_user}"
33 //       password = "${artifactory_password}"
34 //     }
35 //   }
36 // }
37
38 rootProject.name = 'preferences'
39
40 include 'openapi'
41 include 'app'
42