-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgradle.properties
19 lines (15 loc) · 974 Bytes
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# scala cross compilation
# by default, gradle invocations will use only this version. useful for ide invocations.
defaultScalaVersions=2.13.16
# if we need to cross-compile and rerun the entire task graph (like in a ci build or publish), run with -PallScalaVersions
# see https://github.com/ADTRAN/gradle-scala-multiversion-plugin#examples
# change in sync with defaultScalaVersions, and in .github/workflows/ci.yml
scalaVersions=2.12.20,2.13.16
# during releases, we only want to create 1 repo tag.
# note that devSnapshot and snapshot tasks won't create repo tags
# see https://github.com/ADTRAN/gradle-scala-multiversion-plugin#advanced-configuration
runOnceTasks=clean,candidate,final,release,generateGradleLintReport
# prevent publication of SHA256 & SHA512 checksums, which are incompatible with sonatype release repos
# see https://github.com/gradle/gradle/issues/11308
systemProp.org.gradle.internal.publish.checksums.insecure=true
showTestStandardStreams=false