Skip to content

Commit 3a93af6

Browse files
authored
chore: maven publication info (#382)
1 parent 2591ef8 commit 3a93af6

File tree

5 files changed

+36
-7
lines changed

5 files changed

+36
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ jobs:
376376
# - name: Checkout flamingock-examples repository
377377
# uses: actions/checkout@v3
378378
# with:
379-
# repository: mongock/flamingock-examples # Checkout flamingock-examples repo
379+
# repository: flamingock/flamingock-examples # Checkout flamingock-examples repo
380380
# ref: master # Use the master branch of flamingock-examples
381381
# - name: Setup java
382382
# uses: actions/setup-java@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ No more fragile scripts or untracked console changes. With CaC:
7272

7373
## 🚀 Getting Started
7474

75-
- Read the [getting started tutorial](https://docs.flamingock.io/docs/getting-started/get-started).
75+
- Read the [quick start tutorial](https://docs.flamingock.io/docs/overview/quick-start).
7676
- Explore real-world usage in the [examples repo](https://github.com/flamingock/flamingock-examples).
7777

7878
<br />

buildSrc/src/main/kotlin/flamingock.publishing.gradle.kts

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,50 @@ publishing {
2222
from(components[fromComponentPublishing])
2323
pom {
2424
name.set(project.name)
25-
description.set("Description should be here")
26-
url.set("https://github.com/flamingock/flamingock-java")
25+
description.set("Flamingock is a Java library that brings Change-as-Code to your applications. It enables you to define and apply versioned, auditable changes to databases, event schemas, and external systems, ensuring safety, synchronization, and governance at runtime")
26+
url.set("https://www.flamingock.io")
2727
inceptionYear.set("2024")
28+
29+
organization {
30+
name.set("Flamingock")
31+
url.set("https://www.flamingock.io")
32+
}
33+
2834
licenses {
2935
license {
3036
name.set("Apache-2.0")
3137
url.set("https://spdx.org/licenses/Apache-2.0.html")
3238
}
3339
}
40+
3441
developers {
3542
developer {
3643
id.set("dieppa")
3744
name.set("Antonio Perez Dieppa")
45+
email.set("[email protected]")
46+
}
47+
developer {
48+
id.set("osantana")
49+
name.set("Oliver Santana")
50+
email.set("[email protected]")
51+
}
52+
developer {
53+
id.set("bercianor")
54+
name.set("Ruben Berciano")
55+
email.set("[email protected]")
56+
}
57+
developer {
58+
id.set("dfrigolet")
59+
name.set("David Frigolet")
60+
email.set("[email protected]")
3861
}
3962
}
63+
64+
issueManagement {
65+
system.set("GitHub")
66+
url.set("https://github.com/flamingock/flamingock-java/issues")
67+
}
68+
4069
scm {
4170
connection.set("scm:git:https://github.com/flamingock/flamingock-java.git")
4271
developerConnection.set("scm:git:ssh://github.com:flamingock/flamingock-java.git")

buildSrc/src/main/kotlin/flamingock.release-management.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ if (project != rootProject) {
6969

7070
jreleaser {
7171
project {
72-
description.set("Description should be here")
72+
description.set("Flamingock is a Java library that brings Change-as-Code to your applications. It enables you to define and apply versioned, auditable changes to databases, event schemas, and external systems, ensuring safety, synchronization, and governance at runtime")
7373
inceptionYear.set("2024")
74-
authors.set(setOf("dieppa"))
74+
authors.set(setOf("dieppa", "osantana", "bercianor", "dfrigolet"))
7575
}
7676
gitRootSearch.set(true)
7777
release {

docs/OPERATIONS_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ Flamingock supports releasing different bundles of modules:
482482
```bash
483483
# 1. Clone and build
484484
git clone <repo-url>
485-
cd flamingock-project
485+
cd flamingock-java
486486
./gradlew build
487487

488488
# 2. Verify everything works

0 commit comments

Comments
 (0)