1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-1065 Project | Tech | Add license checker (#3007)

This commit is contained in:
Mikhail 2023-03-23 20:06:44 +03:00 committed by GitHub
parent 32c22bb6e5
commit c53f6465dd
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 64 additions and 6 deletions

View file

@ -9,6 +9,7 @@ buildscript {
ext.version_name = '1.0'
ext.version_code = 1
ext.test_runner = 'androidx.test.runner.AndroidJUnitRunner'
ext.onCi = project.properties.getOrDefault("com.anytype.ci", "false").toBoolean()
def githubProperties = new Properties()
def githubPropertiesFile = file("$rootDir${File.separator}github.properties")
@ -33,7 +34,12 @@ buildscript {
password = githubProperties['gpr.key']
}
}
}
if (ext.onCi) {
dependencies {
classpath "com.github.openkin:license-gradle-plugin:0d9582e233"
}
}
}