-
Notifications
You must be signed in to change notification settings - Fork 261
/
gradle.properties
44 lines (32 loc) · 1.26 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
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the ODPi Egeria project.
# Allow parallel builds (defaults will be 1 per CPU thread)
org.gradle.parallel=true
# Caching
org.gradle.caching=true
# Watch filesystem for changes. Disable if memory constrained
org.gradle.vfs.watch=true
# Default logging output
org.gradle.console=auto
# Stop if we get a warning - prevents us using deprecated features
org.gradle.warning.mode=fail
# Defer configuration until needed
org.gradle.configureondemand=true
# Increase memory to 4GB
org.gradle.jvmargs=-Xmx4096m
# If system is quiet, all cpu will be used anyway. But on interactive desktop this will
# help keep system responsive whilst a build is running
org.gradle.priority=low
# Timeout the daemon after an hour
org.gradle.daemon.idletimeout=3600000
# Maven publish repository name
mavenRepoName=OSSRH
# Maven publish repository url
# it can be overridden by env variable ORG_GRADLE_PROJECT_mavenRepoUrl
mavenRepoUrl=https://oss.sonatype.org/content/repositories/snapshots
# Maven publish repository user
# it can be overridden by env variable ORG_GRADLE_PROJECT_mavenRepoUser
mavenRepoUser=
# Maven publish repository password
# it can be overridden by env variable ORG_GRADLE_PROJECT_mavenRepoPass
mavenRepoPass=