forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
28 lines (26 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
group=com.linecorp.armeria
version=1.20.4-SNAPSHOT
projectName=Armeria
projectUrl=https://armeria.dev/
projectDescription=Asynchronous HTTP/2 RPC/REST client/server library built on top of Java 8, Netty, Thrift and gRPC
authorName=LINE Corporation
authorUrl=https://engineering.linecorp.com/en/
inceptionYear=2015
licenseName=The Apache License, Version 2.0
licenseUrl=https://www.apache.org/license/LICENSE-2.0.txt
scmUrl=https://github.com/line/armeria
scmConnection=scm:git:https://github.com/line/armeria.git
scmDeveloperConnection=scm:git:ssh://[email protected]/line/armeria.git
javaSourceCompatibility=1.8
javaTargetCompatibility=1.8
publishUrlForRelease=https://oss.sonatype.org/service/local/staging/deploy/maven2/
publishUrlForSnapshot=https://oss.sonatype.org/content/repositories/snapshots/
publishUsernameProperty=ossrhUsername
publishPasswordProperty=ossrhPassword
publishSignatureRequired=true
# Gradle options
org.gradle.jvmargs=-Xmx1536m -XX:+HeapDumpOnOutOfMemoryError
## Disable TLSv1.3 because it triggers handshake failures on some hosts we access.
systemProp.https.protocols=TLSv1,TLSv1.1,TLSv1.2
jacocoExclusions=com/linecorp/armeria/internal/common/CurrentJavaVersionSpecific,com/linecorp/armeria/*/scalapb/**,META-INF/versions/**