-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 736 Bytes
/
build.gradle
File metadata and controls
33 lines (27 loc) · 736 Bytes
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
30
31
32
33
def PROJECT_GROUP = 'test'
def BUILD_VERSION = '0.0.1'
group = PROJECT_GROUP
version = BUILD_VERSION
apply plugin: 'java'
project.ext.PROJECT_GROUP = PROJECT_GROUP
project.ext.BUILD_VERSION = BUILD_VERSION
// Versions
project.ext.RX_JAVA_VERSION = '2.0.6'
project.ext.JUNIT_VERSION = '4.12'
project.ext.MOCKITO_VERSION = '1.10.19'
project.ext.HAMCREST_VERSION = '1.3'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.1.11'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.+'
classpath 'me.tatarka:gradle-retrolambda:3.6.0'
}
}
repositories {
jcenter()
mavenCentral()
}