aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/src/main/groovy/ca/allanwang/kau/Plugins.groovy
blob: 89182f19b70d6a23aa5afe2f1e447dc83fcd6685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package ca.allanwang.kau

/**
 * Some common buildscript plugins, backed by the supplied versions
 */
class Plugins {
    static def android = "com.android.tools.build:gradle:${Versions.gradlePlugin}"
    static def kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}"
    static
    def androidMaven = "com.github.dcendents:android-maven-gradle-plugin:${Versions.mavenPlugin}"
    static
    def playPublisher = "com.github.triplet.gradle:play-publisher:${Versions.playPublishPlugin}"
    static
    def dexCount = "com.getkeepsafe.dexcount:dexcount-gradle-plugin:${Versions.dexCountPlugin}"
    static
    def gitVersion = "gradle.plugin.com.gladed.gradle.androidgitversion:gradle-android-git-version:${Versions.gitVersionPlugin}"
    static def spotless = "com.diffplug.spotless:spotless-plugin-gradle:${Versions.spotless}"
}