2
0
MasterPassword/gradle/build.gradle

39 lines
729 B
Groovy
Raw Normal View History

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 ) {
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 {
xml.enabled false
html.enabled true
}
}
}
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()
maven { url 'https://maven.lyndir.com' }
2017-02-06 16:16:04 +00:00
}
}