-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathgradle.properties
More file actions
41 lines (36 loc) · 1.96 KB
/
Copy pathgradle.properties
File metadata and controls
41 lines (36 loc) · 1.96 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
GROUP=com.squareup.leakcanary
VERSION_NAME=3.0-alpha-10-SNAPSHOT
# Shark Dive is a desktop app rather than a library, so it ships on its own version line, released
# independently of VERSION_NAME. It also has to: the installer formats validate this and reject anything
# but three integers, so `3.0-alpha-10` is not a version a DMG can be built for.
#
# What those formats accept, measured by building each: MAJOR between 1 and 255, MINOR up to 255, PATCH up
# to 65535. macOS refuses a MAJOR of 0 ("The first number in an app-version cannot be zero or negative")
# and MSI refuses anything over 255. So no number here can mean "before 1.0" — not 0.x, and not a
# calendar version either. **The alpha lives in the release, not in the version**: the GitHub release is
# marked as a prerelease and says so. See docs/releasing-shark-dive.md.
SHARK_DIVE_VERSION=1.0.0
POM_DESCRIPTION=LeakCanary
POM_INCEPTION_YEAR=2015
POM_URL=https://github.com/square/leakcanary/
POM_SCM_URL=https://github.com/square/leakcanary/
POM_SCM_CONNECTION=scm:git:https://github.com/square/leakcanary.git
POM_SCM_DEV_CONNECTION=scm:git:git@github.com:square/leakcanary.git
POM_LICENSE_NAME=The Apache Software License, Version 2.0
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENSE_DIST=repo
POM_DEVELOPER_ID=square
POM_DEVELOPER_NAME=Square, Inc.
POM_DEVELOPER_URL=https://github.com/square/
SONATYPE_STAGING_PROFILE=com.squareup
android.useAndroidX=true
#Gradle properties: https://docs.gradle.org/current/userguide/build_environment.html
org.gradle.caching=true
org.gradle.configureondemand=true
org.gradle.jvmargs=-XX:+UseParallelGC -Dfile.encoding=UTF-8
org.gradle.parallel=true
android.nonTransitiveRClass=false
# Opt in to the Dokka Gradle plugin v2, the v1 collector tasks resolve configurations across
# projects at execution time which Gradle 9 no longer allows.
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true