forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
35 lines (32 loc) · 1.59 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
group=com.linecorp.armeria
version=1.9.3-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
## Disable TLSv1.3 because it triggers handshake failures on some hosts we access.
systemProp.https.protocols=TLSv1,TLSv1.1,TLSv1.2
# TODO(ikhoon): Kotlin 1.5.0 is not compatible JaCoCo 0.8.6.
# Remove '**/kotlin/**' once JaCoCo 0.8.7 is released.
# See https://github.com/jacoco/jacoco/issues/1155 for details.
jacocoExclusions=com/linecorp/armeria/internal/common/CurrentJavaVersionSpecific,com/linecorp/armeria/*/scalapb/**,META-INF/versions/**,**/kotlin/**
# TODO(trustin): Remove this workaround once KT-45545 is fixed.
# https://youtrack.jetbrains.com/issue/KT-45545
kapt.use.worker.api=false