-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (44 loc) · 993 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
46
47
48
49
50
51
52
53
54
plugins {
id 'java'
id 'application'
id 'maven-publish'
id 'io.freefair.lombok' version '6.5.1'
}
sourceCompatibility = '11'
targetCompatibility = '11'
group 'com.github.psiotwo'
version '0.0.1'
repositories {
mavenCentral()
}
application {
mainClass = 'cz.sio2.obo.OBOFoundryVersionFetcher'
run {
systemProperties System.getProperties()
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation libs.slf4j
implementation libs.picocli
implementation libs.httpclient5
implementation libs.jena
testImplementation libs.bundles.testDependencies
testRuntimeOnly libs.bundles.testRuntimeOnly
}
test {
useJUnitPlatform()
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.github.psiotwo'
artifactId = 'ontology-version-extractor'
version = '0.0.1'
from components.java
}
}
}