forked from sorabito/gexcelparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 807 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 807 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
34
35
apply plugin: "groovy"
apply plugin: 'maven'
repositories {
mavenCentral()
// gexcelapi
maven {
url 'https://github.com/kaminami/gexcelapi/raw/master/repository'
}
}
dependencies {
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: '2.4.21'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.22'
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '3.10.1'
compile 'kaminami:gexcelapi:0.6'
testCompile "junit:junit:4.12"
}
def repo = new File(rootDir, "repository")
uploadArchives {
repositories {
mavenDeployer {
repository url: "file://${repo.absolutePath}"
pom.version = '1.0.3'
pom.groupId = 'kaminami'
pom.artifactId = 'gexcelparser'
}
}
}