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:
parent
32c22bb6e5
commit
c53f6465dd
5 changed files with 64 additions and 6 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue