aboutsummaryrefslogtreecommitdiffstats
path: root/settings.gradle
blob: 45322ff70677a1c2438f1ba5f14c3d57817ce37d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Centrally declare plugin versions here
// https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_version_management
pluginManagement {
    plugins {
        id 'org.springframework.boot' version '2.7.3'
        id 'io.spring.dependency-management' version '1.0.13.RELEASE'
        id 'org.sonarqube' version '3.4.0.2513'
        id 'com.github.hierynomus.license' version '0.16.1'
        id 'org.openapi.generator' version '6.6.0'
        id 'com.gorylenko.gradle-git-properties' version '2.4.1'
    }
    // https://docs.gradle.org/current/userguide/plugins.html#sec:custom_plugin_repositories
    repositories {
        maven {
            url "https://plugins.gradle.org/m2/"
        }
        mavenCentral()
    }
}

rootProject.name = 'history'
include('app','openapi')