aboutsummaryrefslogtreecommitdiffstats
path: root/settings.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle43
1 files changed, 43 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..dc99316
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,43 @@
+// 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.0.13.RELEASE'
+ id 'org.springframework.boot' version '2.7.3'
+ id 'org.sonarqube' version '3.4.0.2513'
+ id 'com.github.hierynomus.license' version '0.16.1'
+ id 'com.gorylenko.gradle-git-properties' version '2.4.1'
+ }
+ // https://docs.gradle.org/current/userguide/plugins.html#sec:custom_plugin_repositories
+ repositories {
+ mavenCentral()
+ maven {
+ url "https://plugins.gradle.org/m2/"
+ }
+ }
+}
+
+// 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 = 'portal-prefs'
+
+include 'openapi'
+include 'app'
+