Skip to content

Commit f962bc5

Browse files
Initial commit
1 parent 1132ef8 commit f962bc5

11 files changed

Lines changed: 1441 additions & 0 deletions

File tree

build.gradle.kts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
plugins {
2+
id("studio.o7.remora") version "0.3.6"
3+
}
4+
5+
group = "studio.o7"
6+
7+
information {
8+
artifactId = "gentle"
9+
description = "A small, ergonomic Java utility library providing " +
10+
"functional programming primitives and a Go-inspired Context system " +
11+
"for value propagation, deadlines and cancellation in concurrent and asynchronous workflows."
12+
url = "https://www.o7.studio"
13+
14+
developers {
15+
developer {
16+
id = "julian-siebert"
17+
name = "Julian Siebert"
18+
email = "mail@julian-siebert.de"
19+
}
20+
}
21+
22+
scm {
23+
connection = "scm:git:git://github.com/o7studios/gentle.git"
24+
developerConnection = "scm:git:git@https://github.com/o7studios/gentle.git"
25+
url = "https://github.com/o7studios/gentle"
26+
tag = "HEAD"
27+
}
28+
29+
ciManagement {
30+
system = "GitHub Actions"
31+
url = "https://github.com/o7studios/gentle/actions"
32+
}
33+
34+
licenses {
35+
license {
36+
name = "MIT License"
37+
url = "https://raw.githubusercontent.com/o7studios/gentle/refs/heads/main/LICENSE"
38+
}
39+
}
40+
}

gradle/wrapper/gradle-wrapper.jar

42.7 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

gradlew

Lines changed: 251 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 94 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = "gentle"
2+

0 commit comments

Comments
 (0)