forked from coil-kt/coil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
34 lines (25 loc) · 922 Bytes
/
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
org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC -Dfile.encoding=UTF-8
# AndroidX
android.useAndroidX=true
# https://kotlinlang.org/docs/code-style-migration-guide.html#in-gradle
kotlin.code.style=official
# Disable welcome message.
systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false
# Config
minSdk=21
targetSdk=31
compileSdk=31
# Maven
GROUP=io.coil-kt
VERSION_NAME=2.0.0-SNAPSHOT
POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines.
POM_INCEPTION_YEAR=2019
POM_URL=https://github.com/coil-kt/coil
POM_SCM_URL=https://github.com/coil-kt/coil
POM_SCM_CONNECTION=scm:git:git://github.com/coil-kt/coil.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/coil-kt/coil.git
POM_LICENCE_NAME=The Apache License, Version 2.0
POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=coil-kt
POM_DEVELOPER_NAME=Coil Contributors