Content for adding to build.gradle

    repositories {
        mavenCentral()
    }

    dependencies {
        classpath "com.github.nrudenko:anarcho-gradle:0.2.2"
    }
    apply plugin: "anarcho"

    anarcho {
        host = "{{ host }}"
        buildTypes {
            defaultConfig {
                appKey = "{{ appKey }}"
                apiToken = "{{ apiToken }}"
                releaseNotes = "BuildType: {build_type} Branch: {git_branch} Commit: {git_commit}"
            }
    }