forked from widavies/TBA-API-V3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (30 loc) · 732 Bytes
/
build.gradle
File metadata and controls
36 lines (30 loc) · 732 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
36
plugins {
id 'java'
id 'maven'
}
version '1.0.1'
group "com.github.wdavies973"
sourceCompatibility = 1.8
// for JitPack
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
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.github.fangyidong:json-simple:tag_release_1_1_1'
compile "org.projectlombok:lombok:1.18.0"
compile 'javax.annotation:jsr250-api:1.0'
}