-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgradle.properties
More file actions
86 lines (60 loc) · 2.68 KB
/
gradle.properties
File metadata and controls
86 lines (60 loc) · 2.68 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# PROJECT ----------------------------------------------------------------------
group = org.jarhc
version = 3.0.0
description = JarHC - JAR Health Check
# GRADLE SETTINGS --------------------------------------------------------------
# display warnings when using deprecated features
org.gradle.warning.mode = all
# increase memory limits for the daemon process
org.gradle.jvmargs = -Xmx1024m -XX:MetaspaceSize=512m -XX:MaxMetaspaceSize=1024m -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8
# disable colors and progress indicator
#org.gradle.console = plain
# RUNTIME ----------------------------------------------------------------------
# URL pattern for Maven Search API ("%s" will be replaced with SHA1 checksum)
jarhc.search.url = https://search.maven.org/solrsearch/select?q=1:%%22%s%%22&rows=20&wt=json
# timout in seconds for Maven Search API
# IMPORTANT: Maven Search API often requires 15, 30, or even 45 seconds to respond
jarhc.search.timeout = 65
# user agent for Maven Search API
jarhc.search.headers.User-Agent = Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:129.0) Gecko/20100101 Firefox/129.0
# enable tests for logging configuration
#jarhc.logging.test.enabled = true
# TESTS ------------------------------------------------------------------------
# skip tests
#skip.tests = true
# override JarHC version number
# (used make output of tests more predictable)
#jarhc.version.override = 0.0.1
# override timestamp used in JarHC reports
# (used make output of tests more predictable)
#jarhc.timestamp.override = 1739992928000
# instruct tests to re-generate their test resources
#jarhc.test.resources.generate = true
# RELEASE TESTS ----------------------------------------------------------------
# filter to include docker images in release tests
# special values: 'all' and 'none'
#jarhc.test.docker.filter = eclipse-temurin
# instruct tests to re-generate their test resources
#jarhc.test.resources.generate = true
# specify the user used in docker container:
# - same = map current user to container user
# - root = run as root user
# - none = use default user (usually root)
#jarhc.test.docker.user = same
# BENCHMARKS -------------------------------------------------------------------
# JMH benchmarks to execute
#benchmarks =
# PUBLISH ----------------------------------------------------------------------
# Sonar token
# alternative: environment variable SONAR_TOKEN
# (see ~/.gradle/gradle.properties)
#systemProp.sonar.token =
# signing information
# (see ~/.gradle/gradle.properties)
#signing.keyId =
#signing.password =
#signing.secretKeyRingFile =
# credentials for Sonatype OSSRH
# (see ~/.gradle/gradle.properties)
#sonatypeUsername =
#sonatypePassword =