forked from MichaelRocks/paranoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pablo.gradle
32 lines (29 loc) · 866 Bytes
/
pablo.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
apply plugin: 'io.michaelrocks.pablo'
pablo {
propertiesFile = rootProject.file('pablo.properties')
pom {
name = 'Paranoid'
description = 'A string obfuscator for Android applications.'
inceptionYear = '2016'
url = 'https://github.com/michaelrocks/paranoid'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
developers {
developer {
id = 'MichaelRocks'
name = 'Michael Rozumyanskiy'
email = 'michael.rozumyanskiy@gmail.com'
}
}
scm {
connection = 'scm:git:git://github.com/michaelrocks/paranoid.git'
developerConnection = 'scm:git:ssh://git@github.com/michaelrocks/paranoid.git'
url = 'https://github.com/michaelrocks/paranoid'
}
}
}