-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
86 lines (74 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
buildscript {
repositories {
jcenter()
}
}
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'maven'
version = "0.0.1-alpha.2"
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
jar {
baseName = 'trivor-nlp'
version = "${version}"
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile('org.apache.opennlp:opennlp-tools:1.8.1')
compile('com.amazonaws:aws-java-sdk-s3:1.11.136')
compile('org.apache.commons:commons-lang3:3.5')
compile('commons-io:commons-io:2.4')
compile('ch.qos.logback:logback-classic:1.2.3')
testCompile('junit:junit:4.12')
testCompile('org.mockito:mockito-all:1.9.5')
}
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
groupId 'org.kalnee'
artifactId 'trivor-nlp'
version "${version}"
}
}
}
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
publications = ['MyPublication']
pkg {
repo = 'maven'
name = 'trivor-nlp'
userOrg = 'kalnee'
licenses = ['MIT']
vcsUrl = 'https://github.com/kalnee/trivor.git'
version {
name = "${version}"
desc = "trivor-nlp v${version}"
released = new Date()
vcsTag = "v${version}"
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
}