-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
31 lines (28 loc) · 871 Bytes
/
Copy pathsettings.gradle
File metadata and controls
31 lines (28 loc) · 871 Bytes
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven { url = 'https://jitpack.io' }
maven {
url = "https://artifacts.codegenomeproject.org/maven"
credentials {
username = providers.environmentVariable('CODE_GENOME_USERNAME').orElse(providers.gradleProperty('codeGenomeUsername')).getOrNull()
password = providers.environmentVariable('CODE_GENOME_TOKEN').orElse(providers.gradleProperty('codeGenomeToken')).getOrNull()
}
}
}
}
plugins {
id("com.autonomousapps.build-health") version '3.19.1'
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url = 'https://jitpack.io' }
}
}
rootProject.name = 'DesktopFX'
include 'Util'
include 'Communication'
include 'FxCore'
include 'Desktop'