-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (36 loc) · 1.38 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
plugins {
id 'java'
id 'application'
}
mainClassName = 'com.scalar.kelpie.Kelpie'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'com.google.inject', name: 'guice', version: '4.2.2'
implementation group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
implementation group: 'com.moandjiezana.toml', name: 'toml4j', version: '0.7.2'
implementation group: 'info.picocli', name: 'picocli', version: '4.1.4'
implementation group: 'javax.json', name: 'javax.json-api', version: '1.1.4'
implementation group: 'org.glassfish', name: 'javax.json', version: '1.1.4'
implementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
implementation group: 'org.hdrhistogram', name: 'HdrHistogram', version: '2.1.12'
testImplementation group: 'junit', name: 'junit', version: '4.13'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.14.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.2.4'
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = "com.scalar-labs"
archivesBaseName = "kelpie"
//version = "1.2.3"
// for archiving and uploading to maven central
//apply from: 'archive.gradle'