This repository was archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgradle.properties
More file actions
36 lines (31 loc) · 1.47 KB
/
gradle.properties
File metadata and controls
36 lines (31 loc) · 1.47 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
# SPDX-License-Identifier: Apache-2.0
GROUP=com.atlan
VERSION_NAME=1.3.2-SNAPSHOT
POM_URL=https://github.com/atlanhq/atlan-java-samples
POM_SCM_URL=[email protected]:atlanhq/atlan-java-samples.git
POM_SCM_CONNECTION=scm:git:[email protected]:atlanhq/atlan-java-samples.git
POM_SCM_DEV_CONNECTION=scm:git:[email protected]:atlanhq/atlan-java-samples.git
POM_LICENCE_NAME=Apache-2.0
POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=atlan
POM_DEVELOPER_NAME=Atlan
POM_DEVELOPER_EMAIL=[email protected]
POM_DESCRIPTION=Atlan Java Samples
POM_NAME=atlan-java-samples
POM_ARTIFACT_ID=atlan-java-samples
POM_PACKAGING=jar
POM_ORGANIZATION_URL=https://atlan.com
VENDOR_NAME=Atlan Pte. Ltd. (https://atlan.com)
# Workaround to prevent Java 12 to try and use TLSv1.3 when uploading coverage
# reports to coveralls.io.
systemProp.jdk.tls.client.protocols="TLSv1,TLSv1.1,TLSv1.2"
# The following is necessary for google-java-format to work with Java 16+
# Cf. https://github.com/google/google-java-format#jdk-16.
# Note that these arguments do NOT work with Java 1.8, so this needs to be
# commented out in that case.
org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED