-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
40 lines (34 loc) · 1.1 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
40 lines (34 loc) · 1.1 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
plugins {
id("studio.o7.remora") version "0.4.0"
}
group = "studio.o7"
information {
artifactId = "gentle"
description = "A small, ergonomic Java utility library providing " +
"functional programming primitives and a Go-inspired Context system " +
"for value propagation, deadlines and cancellation in concurrent and asynchronous workflows."
url = "https://www.o7.studio"
developers {
developer {
id = "julian-siebert"
name = "Julian Siebert"
email = "mail@julian-siebert.de"
}
}
scm {
connection = "scm:git:git://github.com/o7studios/gentle.git"
developerConnection = "scm:git:git@https://github.com/o7studios/gentle.git"
url = "https://github.com/o7studios/gentle"
tag = "HEAD"
}
ciManagement {
system = "GitHub Actions"
url = "https://github.com/o7studios/gentle/actions"
}
licenses {
license {
name = "MIT License"
url = "https://raw.githubusercontent.com/o7studios/gentle/refs/heads/main/LICENSE"
}
}
}