xebialabs-community/xlr-fastlane-plugin

View on GitHub
build.gradle

Summary

Maintainability
Test Coverage
buildscript {
  repositories {
    jcenter()
  }
  dependencies {
    classpath "nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0"
  }
}

version=1.0

apply plugin: "com.github.hierynomus.license"
apply plugin: 'java'

license {
    header rootProject.file('License.md')
    strictCheck false
    excludes(["**/*.json"])
    ext.year = Calendar.getInstance().get(Calendar.YEAR)
    ext.name = 'XEBIALABS'
}