Skip to content

Commit c394c79

Browse files
committed
feat: release to maven central
1 parent 4d2d4b4 commit c394c79

File tree

5 files changed

+92
-32
lines changed

5 files changed

+92
-32
lines changed

.github/workflows/gradle-publish.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,22 @@ jobs:
3434
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
3535

3636
- name: Build with Gradle
37-
run: ./gradlew :lib-core:build
37+
run: ./gradlew build -x test
3838

3939
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
4040
# the publishing section of your build.gradle
41-
- name: Publish to GitHub Packages and Maven Central
41+
- name: Publish to GitHub Packages and Stage all artifacts to a local directory (for jreleaser)
4242
run: ./gradlew :lib-core:publish
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.TOKEN }}
45-
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
46-
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
45+
46+
# For Jreleaser
47+
- name: Publish to Maven Central
48+
run: ./gradlew jreleaserFullRelease --stacktrace
49+
env:
50+
JRELEASER_MAVENCENTRAL_USERNAME: ${{ secrets.JRELEASER_MAVENCENTRAL_USERNAME }}
51+
JRELEASER_MAVENCENTRAL_TOKEN: ${{ secrets.JRELEASER_MAVENCENTRAL_TOKEN }}
52+
JRELEASER_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
53+
JRELEASER_GPG_SECRET_KEY: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
54+
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
55+
JRELEASER_GITHUB_TOKEN: ${{ secrets.TOKEN }}

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Developed a high-performance ring buffer leveraging `lock-free` and low-level `u
66

77
[Cafe RingBuffer Javadoc](https://gc-garcol.github.io/cafe-ringbuffer/index-all.html)
88

9-
| Benchmark | Results |
10-
|----------------------------------------------------------------------------------|--------------------------------------------------------------|
11-
| `Unicast`-`1P – 1C` throughput: 11,200 messages. Avg-latency: 89.4 ns | <img src="readme/benchmark_unicast_1p1c.png" width="100%"/> |
12-
| `Three Step Pipeline`-`1P – 3C` throughput: 7,800 messages.Avg-latency: 132.2 ns | <img src="readme/benchmark_pipeline_1p3c.png" width="100%"/> |
9+
| Benchmark | Results |
10+
|-------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
11+
| `Unicast`-`1P – 1C` <br>throughput: 11,200,000 messages/s. <br> Avg-latency: 89.4 ns | <img src="readme/benchmark_unicast_1p1c.png" width="100%"/> |
12+
| `Three Step Pipeline`-`1P – 3C` <br>throughput: 7,800,000 messages/s. <br>Avg-latency: 132.2 ns | <img src="readme/benchmark_pipeline_1p3c.png" width="100%"/> |
1313
## Features
1414

1515
- [X] `OneToManyRingBuffer` (also configurable for `OneToOneRingBuffer` usage)

README.release.md

-8
This file was deleted.

build.gradle.kts

+66-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,68 @@
1+
import org.jreleaser.model.Active
2+
13
plugins {
2-
java
4+
`java-library`
5+
`maven-publish`
6+
id("org.jreleaser") version "1.15.0"
7+
}
8+
9+
group = "io.github.gc-garcol"
10+
version = "1.0.0"
11+
12+
java {
13+
withJavadocJar()
14+
withSourcesJar()
15+
}
16+
17+
publishing {
18+
publications {
19+
create<MavenPublication>("maven") {
20+
groupId = "io.github.gc-garcol"
21+
artifactId = "cafe-ringbuffer"
22+
23+
from(components["java"])
24+
25+
pom {
26+
name.set("cafe-ringbuffer")
27+
description.set("cafe-ringbuffer")
28+
url.set("https://gc-garcol.github.io/cafe-ringbuffer/gc/garcol/libcore/package-summary.html")
29+
inceptionYear.set("2024")
30+
licenses {
31+
license {
32+
name.set("Apache-2.0")
33+
url.set("https://spdx.org/licenses/Apache-2.0.html")
34+
}
35+
}
36+
developers {
37+
developer {
38+
id.set("gc-garcol")
39+
name.set("cafe")
40+
}
41+
}
42+
scm {
43+
connection.set("scm:git:https://github.com/gc-garcol/cafe-ringbuffer.git")
44+
developerConnection.set("scm:git:ssh://github.com/gc-garcol/cafe-ringbuffer.git")
45+
url.set("https://github.com/gc-garcol/cafe-ringbuffer/tree/main")
46+
}
47+
}
48+
}
49+
}
50+
}
51+
52+
jreleaser {
53+
signing {
54+
active = Active.ALWAYS
55+
armored = true
56+
}
57+
deploy {
58+
maven {
59+
mavenCentral {
60+
create("sonatype") {
61+
active = Active.ALWAYS
62+
url.set("https://central.sonatype.com/api/v1/publisher")
63+
stagingRepositories.add("lib-core/build/staging-deploy")
64+
}
65+
}
66+
}
67+
}
368
}

lib-core/build.gradle.kts

+9-15
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
plugins {
22
`java-library`
33
`maven-publish`
4-
id("org.jreleaser") version "1.15.0"
54
}
65

76
group = "io.github.gc-garcol"
8-
version = "0.0.4"
7+
version = "1.0.0"
98

109
java {
1110
toolchain {
@@ -45,7 +44,7 @@ publishing {
4544
pom {
4645
name.set("cafe-ringbuffer")
4746
description.set("cafe-ringbuffer")
48-
url.set("https://github.com/gc-garcol/cafe-ringbuffer")
47+
url.set("https://gc-garcol.github.io/cafe-ringbuffer/gc/garcol/libcore/package-summary.html")
4948
inceptionYear.set("2024")
5049
licenses {
5150
license {
@@ -69,21 +68,16 @@ publishing {
6968
}
7069

7170
repositories {
72-
maven {
73-
name = "GitHubPackages"
74-
url = uri("https://maven.pkg.github.com/gc-garcol/cafe-ringbuffer")
75-
credentials {
76-
username = System.getenv("GITHUB_ACTOR")
77-
password = System.getenv("GITHUB_TOKEN")
78-
}
79-
}
8071
// maven {
81-
// name = "MavenCentral"
82-
// url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
72+
// name = "GitHubPackages"
73+
// url = uri("https://maven.pkg.github.com/gc-garcol/cafe-ringbuffer")
8374
// credentials {
84-
// username = System.getenv("MAVEN_USERNAME")
85-
// password = System.getenv("MAVEN_PASSWORD")
75+
// username = System.getenv("GITHUB_ACTOR")
76+
// password = System.getenv("GITHUB_TOKEN")
8677
// }
8778
// }
79+
maven {
80+
url = layout.buildDirectory.dir("staging-deploy").get().asFile.toURI()
81+
}
8882
}
8983
}

0 commit comments

Comments
 (0)