aboutsummaryrefslogtreecommitdiffstats
path: root/settings.gradle
blob: 632c8ef26adbc844090840bf7ebd89d0b0e31d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Centrally declare plugin versions here
pluginManagement {
    // https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_version_management
    plugins {
        id 'io.spring.dependency-management' version '1.1.2'
        id 'org.springframework.boot' version '3.1.2'
        id 'com.github.hierynomus.license' version '0.16.1'
        id 'com.gorylenko.gradle-git-properties' version '2.4.1'
        id 'org.openapi.generator' version '7.0.0-beta'
    }
    // https://docs.gradle.org/current/userguide/plugins.html#sec:custom_plugin_repositories
    repositories {
        mavenCentral()
        gradlePluginPortal()
    }
}

// This is a preview feature, enable in the future and remove repositories blocks from sub build.gradles
// https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:centralized-repository-declaration
// dependencyResolutionManagement {
// 	maven {
// 		url "${maven_central_url}"
// 		credentials {
// 			username = "${artifactory_user}"
// 			password = "${artifactory_password}"
// 		}
// 	}
// 	maven {
// 		url "${gradle_plugins_url}"
// 		credentials {
// 			username = "${artifactory_user}"
// 			password = "${artifactory_password}"
// 		}
// 	}
// }

rootProject.name = 'preferences'

include 'openapi'
include 'app'