xref: /aosp_15_r20/external/accompanist/gradle.properties (revision fa44fe6ae8e729aa3cfe5c03eedbbf98fb44e2c6)
1#
2# Copyright 2020 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      https://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# Turn on parallel compilation, caching and on-demand configuration
18org.gradle.configureondemand=true
19org.gradle.caching=true
20org.gradle.parallel=true
21
22# Declare we support AndroidX
23android.useAndroidX=true
24
25# Increase memory
26org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=2048m -XX:+HeapDumpOnOutOfMemoryError
27
28# Required to publish to Nexus (see https://github.com/gradle/gradle/issues/11308)
29systemProp.org.gradle.internal.publish.checksums.insecure=true
30
31# Increase timeout when pushing to Sonatype (otherwise we get timeouts)
32systemProp.org.gradle.internal.http.socketTimeout=120000
33
34GROUP=com.google.accompanist
35# !! No longer need to update this manually when using a Compose SNAPSHOT
36VERSION_NAME=0.34.0
37
38POM_DESCRIPTION=Utilities for Jetpack Compose
39
40POM_URL=https://github.com/google/accompanist/
41POM_SCM_URL=https://github.com/google/accompanist/
42POM_SCM_CONNECTION=scm:git:git://github.com/google/accompanist.git
43POM_SCM_DEV_CONNECTION=scm:git:git://github.com/google/accompanist.git
44
45POM_LICENCE_NAME=The Apache Software License, Version 2.0
46POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
47POM_LICENCE_DIST=repo
48
49POM_DEVELOPER_ID=google
50POM_DEVELOPER_NAME=Google
51
52SONATYPE_HOST=DEFAULT
53RELEASE_SIGNING_ENABLED=true
54