forked from pegasystems/pega-alertanalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
58 lines (44 loc) · 1.88 KB
/
gradle.properties
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
########################################################
##### Build artifact publishing/uploading props #####
########################################################
// multi-project wide gradle group identifier
group = com.pega.gsea
// org or user or umbrella folder for this project
organization = pegasystems
// snapshot and release repo names
snapshotRepository = libs-snapshot-local
releaseRepository = libs-release-local
// which task to use for uploading artifacts: artifactoryPublish or bintrayUpload
uploadTask = bintrayUpload
// Bintray Credentials which are only relevant if
// the 'uploadTask' property is set to 'bintrayUpload'.
//
// !!! Should be overridden in your ~/.gradle/gradle.properties file !!!
bintrayUsername = some_username
bintrayKey = some_key
// Artifactory Credentials which are only relevant if
// the 'uploadTask' property is set to 'artifactoryPublish'.
//
// !!! Should be overridden in your ~/.gradle/gradle.properties file !!!
artifactoryURL = https://localhost:8081/artifactory
artifactoryUser = some_username
artifactoryPassword = some_password
########################################################
##### Github/git versioning and publishing props #####
########################################################
// can bet set to either 'final' or 'SNAPSHOT'
releaseStage = SNAPSHOT
// can bet set to either 'major', 'minor', or 'patch'
releaseScope = patch
// Github Credentials to push tags/versions/branches/etc.
//
// !!! Should be overridden in your ~/.gradle/gradle.properties file !!!
releaseUsername = some_username
releasePassword = some_password
// whether to publish docs to github-pages or not
publishGithubPages = true
########################################################
##### OOTB gradle properties #####
########################################################
org.gradle.parallel = true
org.gradle.daemon = false