2017-03-10 16:31:22 +00:00
|
|
|
allprojects {
|
2017-02-06 16:16:04 +00:00
|
|
|
//apply plugin: 'findbugs'
|
|
|
|
|
|
|
|
group = 'com.lyndir.masterpassword'
|
|
|
|
version = 'GIT-SNAPSHOT'
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2018-05-15 21:12:42 +00:00
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
tasks.withType(FindBugs) {
|
|
|
|
reports {
|
|
|
|
xml.enabled false
|
|
|
|
html.enabled true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-04-24 20:06:02 +00:00
|
|
|
classpath group: 'com.android.tools.build', name: 'gradle', version: '2.3.2'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2017-03-10 16:31:22 +00:00
|
|
|
maven { url 'http://maven.lyndir.com' }
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|