-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (43 loc) · 1.21 KB
/
build.gradle
File metadata and controls
51 lines (43 loc) · 1.21 KB
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
plugins {
id 'java'
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm'
}
group 'space.dynomake'
version '1.1.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
name = "clojars.org"
url = uri("https://repo.clojars.org")
}
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.2'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
publishing {
repositories {
maven {
name = "dynoMaven"
url = uri("https://maven.dynomake.space/releases")
credentials {
username = findProperty("dynoMavenUser") ?: System.getenv("CI_JOB_USER")
password = findProperty("dynoMavenPassword") ?: System.getenv("CI_JOB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
from(components.java)
}
}
}
compileKotlin {
}