forked from google/caliper
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
29 lines (26 loc) · 857 Bytes
/
build.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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'ch.netzwerg.release'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0-rc1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'ch.netzwerg:gradle-release-plugin:1.1.0'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
}
}
allprojects {
group = 'dk.ilios'
version = file("${rootDir}/version.txt").text.trim();
repositories {
jcenter()
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}