mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
bfe587979d
This includes real tests too.
30 lines
548 B
Groovy
30 lines
548 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.0.0-rc4'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'org.owasp:dependency-check-gradle:1.3.2.1'
|
|
}
|
|
}
|
|
apply plugin: 'org.owasp.dependencycheck'
|
|
dependencyCheck {
|
|
format='JSON'
|
|
}
|