-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
33 lines (25 loc) · 1.04 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
GROUP=io.github.reactivecircus.firestorm
VERSION_NAME=0.2.0-SNAPSHOT
POM_ARTIFACT_ID=firestorm-gradle-plugin
POM_NAME=Firestorm Gradle Plugin
POM_DESCRIPTION=Gradle plugin for running modularized Android instrumented tests on Firebase Test Lab
POM_PACKAGING=jar
POM_URL=https://github.com/reactivecircus/Firestorm
POM_SCM_URL=https://github.com/reactivecircus/Firestorm
POM_SCM_CONNECTION=scm:git:https://github.com/reactivecircus/Firestorm.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/reactivecircus/Firestorm.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=reactivecircus
POM_DEVELOPER_NAME=Reactive Circus
org.gradle.parallel=true
org.gradle.configureondemand=true
org.gradle.caching=true
org.gradle.vfs.watch=true
# Enable Kotlin incremental compilation
kotlin.incremental=true
# Enable parallel tasks execution for Kotlin Gradle plugin
kotlin.parallel.tasks.in.project=true
# Kotlin code style
kotlin.code.style=official