-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (39 loc) · 1.2 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
group 'com.fewlaps.mentiondetector'
version '1.3.2'
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'
apply plugin: 'cobertura'
apply plugin: 'com.github.kt3k.coveralls'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'com.fewlaps.quitnowemailsuggester:quitnow-email-suggester:2.0.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.assertj:assertj-core:2.3.0'
testCompile 'org.mockito:mockito-all:1.8.4'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9.1'
classpath 'net.saliman:gradle-cobertura-plugin:2.0.0' // cobertura plugin
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.4.0'
}
}
compileJava {
sourceCompatibility = 1.6
targetCompatibility = 1.6
}
publish {
userOrg = 'fewlaps'
groupId = 'com.fewlaps.mentiondetector'
artifactId = 'mention-detector'
publishVersion = project.version
desc = 'Detect @mentions with this fully tested library'
website = 'https://github.com/Fewlaps/mention-detector'
}
cobertura.coverageFormats = ['html', 'xml'] // coveralls plugin depends on xml format report