-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
45 lines (38 loc) · 944 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
group 'indexer4j'
version '0.3.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'
apply plugin: 'jacoco'
sourceCompatibility = 1.8
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9'
}
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
publish {
repoName = 'indexer4j'
userOrg = 'haeungun'
groupId = 'com.haeungun.indexer4j'
artifactId = 'indexer4j'
publishVersion = '0.3.0'
desc = 'Simple full text indexing and searching library for Java'
website = 'https://github.com/haeungun/indexer4j'
issueTracker = 'https://github.com/haeungun/indexer4j/issues'
repository = 'https://github.com/haeungun/indexer4j.git'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
csv.enabled true
}
}