2017-03-10 16:31:22 +00:00
|
|
|
allprojects {
|
2018-05-19 15:45:57 +00:00
|
|
|
apply plugin: 'findbugs'
|
2017-02-06 16:16:04 +00:00
|
|
|
|
|
|
|
group = 'com.lyndir.masterpassword'
|
|
|
|
version = 'GIT-SNAPSHOT'
|
|
|
|
|
2018-06-10 19:22:37 +00:00
|
|
|
tasks.withType( JavaCompile ) {
|
2018-06-11 04:09:59 +00:00
|
|
|
options.encoding = 'UTF-8'
|
2018-05-15 21:12:42 +00:00
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
2018-06-10 19:22:37 +00:00
|
|
|
tasks.withType( FindBugs ) {
|
2017-02-06 16:16:04 +00:00
|
|
|
reports {
|
2018-06-17 05:11:16 +00:00
|
|
|
xml.enabled = false
|
|
|
|
html.enabled = true
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-06-10 19:22:37 +00:00
|
|
|
google()
|
2017-02-06 16:16:04 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-06-10 19:22:37 +00:00
|
|
|
classpath group: 'com.android.tools.build', name: 'gradle', version: '3.1.0'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
repositories {
|
2018-06-10 19:22:37 +00:00
|
|
|
google()
|
|
|
|
jcenter()
|
2017-02-06 16:16:04 +00:00
|
|
|
mavenCentral()
|
2018-06-10 23:11:22 +00:00
|
|
|
maven { url 'https://maven.lyndir.com' }
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|