fix: correct behavior of license plugin when injecting variables

This commit is contained in:
Connor Tumbleson 2021-09-03 07:58:51 -04:00
parent b6c3e1daf4
commit bc51024ea8
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
1 changed files with 7 additions and 6 deletions

View File

@ -17,12 +17,6 @@ import java.nio.charset.StandardCharsets
*/
buildscript {
ext {
year = '2010'
brut = 'Ryszard Wiśniewski'
brutEmail = 'brut.alll@gmail.com'
ibot = 'Connor Tumbleson'
ibotEmail = 'connor.tumbleson@gmail.com'
depends = [
baksmali : 'org.smali:baksmali:2.5.2',
commons_cli : 'commons-cli:commons-cli:1.4',
@ -70,6 +64,13 @@ allprojects {
mapping {
java = 'SLASHSTAR_STYLE'
}
ext {
year = '2010'
brut = 'Ryszard Wiśniewski'
brutEmail = 'brut.alll@gmail.com'
ibot = 'Connor Tumbleson'
ibotEmail = 'connor.tumbleson@gmail.com'
}
strictCheck true
}