Skip to content

Commit c4c64f9

Browse files
Update project coordinates
1 parent a77cc49 commit c4c64f9

8 files changed

Lines changed: 49 additions & 49 deletions

File tree

.github/copilot-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
- `problem4j-spring-webmvc`: integration for Spring WebMVC.
5555
- `problem4j-spring-webflux`: integration for Spring WebFlux.
5656
- **Spring entry points:**
57-
- [`ProblemAutoConfiguration`](../problem4j-spring-web/src/main/java/io/github/malczuuu/problem4j/spring/web/ProblemAutoConfiguration.java)
58-
- [`ProblemWebFluxAutoConfiguration`](../problem4j-spring-webflux/src/main/java/io/github/malczuuu/problem4j/spring/webflux/ProblemWebFluxAutoConfiguration.java)
59-
- [`ProblemMvcAutoConfiguration`](../problem4j-spring-webmvc/src/main/java/io/github/malczuuu/problem4j/spring/webmvc/ProblemMvcAutoConfiguration.java)
57+
- [`ProblemAutoConfiguration`](../problem4j-spring-web/src/main/java/io/github/problem4j/spring/web/ProblemAutoConfiguration.java)
58+
- [`ProblemWebFluxAutoConfiguration`](../problem4j-spring-webflux/src/main/java/io/github/problem4j/spring/webflux/ProblemWebFluxAutoConfiguration.java)
59+
- [`ProblemMvcAutoConfiguration`](../problem4j-spring-webmvc/src/main/java/io/github/problem4j/spring/webmvc/ProblemMvcAutoConfiguration.java)
6060

6161
## Coding Guidelines
6262

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ Please remain respectful, constructive, and considerate of others.
6868

6969
[dco]: https://developercertificate.org/
7070

71-
[discussions]: https://github.com/malczuuu/problem4j-spring/discussions
71+
[discussions]: https://github.com/problem4j/problem4j-spring/discussions
7272

73-
[issues]: https://github.com/malczuuu/problem4j-spring/issues
73+
[issues]: https://github.com/problem4j/problem4j-spring/issues
7474

7575
[mit]: https://opensource.org/license/MIT

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Problem4J Spring
22

3-
[![Build Status](https://github.com/malczuuu/problem4j-spring/actions/workflows/gradle-build.yml/badge.svg)](https://github.com/malczuuu/problem4j-spring/actions/workflows/gradle-build.yml)
4-
[![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=1.1.*)][maven-central]
5-
[![License](https://img.shields.io/github/license/malczuuu/problem4j-spring)](https://github.com/malczuuu/problem4j-spring/blob/main/LICENSE)
3+
[![Build Status](https://github.com/problem4j/problem4j-spring/actions/workflows/gradle-build.yml/badge.svg)](https://github.com/problem4j/problem4j-spring/actions/workflows/gradle-build.yml)
4+
[![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=1.1.*)][maven-central]
5+
[![License](https://img.shields.io/github/license/problem4j/problem4j-spring)](https://github.com/problem4j/problem4j-spring/blob/main/LICENSE)
66
[![Spring Boot](https://img.shields.io/badge/v3,v4-6DB33F?label=Spring%20Boot)](https://spring.io/projects/spring-boot)
77

88
Designing clear and consistent error responses in a REST API is often harder than it looks. Without a shared standard,
@@ -167,12 +167,12 @@ extension to it and does not bring it transitively.
167167
<dependencies>
168168
<!-- pick the one for your project -->
169169
<dependency>
170-
<groupId>io.github.malczuuu.problem4j</groupId>
170+
<groupId>io.github.problem4j</groupId>
171171
<artifactId>problem4j-spring-webflux</artifactId>
172172
<version>${version}</version>
173173
</dependency>
174174
<dependency>
175-
<groupId>io.github.malczuuu.problem4j</groupId>
175+
<groupId>io.github.problem4j</groupId>
176176
<artifactId>problem4j-spring-webmvc</artifactId>
177177
<version>${version}</version>
178178
</dependency>
@@ -182,8 +182,8 @@ extension to it and does not bring it transitively.
182182
```groovy
183183
dependencies {
184184
// pick the one for your project
185-
implementation("io.github.malczuuu.problem4j:problem4j-spring-webflux:${version}")
186-
implementation("io.github.malczuuu.problem4j:problem4j-spring-webmvc:${version}")
185+
implementation("io.github.problem4j:problem4j-spring-webflux:${version}")
186+
implementation("io.github.problem4j:problem4j-spring-webmvc:${version}")
187187
}
188188
```
189189

@@ -194,8 +194,8 @@ least until Spring Boot 3 reaches its end of life or becomes irrelevant.
194194

195195
| branch | info | latest |
196196
|------------------|--------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
197-
| `main` | version `2.x` supporting Spring Boot `4.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=2.*)][maven-central] |
198-
| `release-v1.*.x` | version `1.x` supporting Spring Boot `3.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=1.*)][maven-central] |
197+
| `main` | version `2.x` supporting Spring Boot `4.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=2.*)][maven-central] |
198+
| `release-v1.*.x` | version `1.x` supporting Spring Boot `3.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=1.*)][maven-central] |
199199

200200
## Problem4J Links
201201

@@ -239,14 +239,14 @@ version. By default, the version is derived from git commit hash.
239239

240240
</details>
241241

242-
[maven-central]: https://central.sonatype.com/namespace/io.github.malczuuu.problem4j
242+
[maven-central]: https://central.sonatype.com/namespace/io.github.problem4j
243243

244-
[problem4j-core]: https://github.com/malczuuu/problem4j-core
244+
[problem4j-core]: https://github.com/problem4j/problem4j-core
245245

246-
[problem4j-jackson]: https://github.com/malczuuu/problem4j-jackson
246+
[problem4j-jackson]: https://github.com/problem4j/problem4j-jackson
247247

248-
[problem4j-spring]: https://github.com/malczuuu/problem4j-spring
248+
[problem4j-spring]: https://github.com/problem4j/problem4j-spring
249249

250-
[repository-wiki-pages]: https://github.com/malczuuu/problem4j-spring/wiki
250+
[repository-wiki-pages]: https://github.com/problem4j/problem4j-spring/wiki
251251

252252
[rfc7807]: https://datatracker.ietf.org/doc/html/rfc7807

RELEASING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ least until Spring Boot 3 reaches its end of life or becomes irrelevant.
1313

1414
| branch | info | latest |
1515
|------------------|--------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
16-
| `main` | version `2.x` supporting Spring Boot `4.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=2.*)][maven-central] |
17-
| `release-v1.*.x` | version `1.x` supporting Spring Boot `3.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=1.*)][maven-central] |
16+
| `main` | version `2.x` supporting Spring Boot `4.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=2.*)][maven-central] |
17+
| `release-v1.*.x` | version `1.x` supporting Spring Boot `3.x` | [![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=1.*)][maven-central] |
1818

1919
Bugfixes for `1.x` should be merged into the lowest applicable `1.x` release branch. From there, they are cascaded
2020
forward into newer version branches if applicable, so fixes propagate through the release line without being duplicated
@@ -35,8 +35,8 @@ issue is critical or a change can be backported with minimal effort.
3535

3636
## Maven Central
3737

38-
[![Publish Release Status](https://github.com/malczuuu/problem4j-spring/actions/workflows/gradle-publish-release.yml/badge.svg)][gradle-publish-release]
39-
[![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=1.1.*)][maven-central]
38+
[![Publish Release Status](https://github.com/problem4j/problem4j-spring/actions/workflows/gradle-publish-release.yml/badge.svg)][gradle-publish-release]
39+
[![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=1.1.*)][maven-central]
4040

4141
1. Keep Git tags with `vX.Y.Z-suffix` format. GitHub Actions job will only trigger on such tags and will remove `v`
4242
prefix.
@@ -65,8 +65,8 @@ Artifacts are published to Maven Central via Sonatype, using following Gradle ta
6565

6666
This command uses `nmcp` Gradle plugin - [link](https://github.com/GradleUp/nmcp).
6767

68-
[gradle-publish-release]: https://github.com/malczuuu/problem4j-spring/actions/workflows/gradle-publish-release.yml
68+
[gradle-publish-release]: https://github.com/problem4j/problem4j-spring/actions/workflows/gradle-publish-release.yml
6969

7070
[gradle-publish-release.yml]: .github/workflows/gradle-publish-release.yml
7171

72-
[maven-central]: https://central.sonatype.com/namespace/io.github.malczuuu.problem4j
72+
[maven-central]: https://central.sonatype.com/namespace/io.github.problem4j

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ org.gradle.workers.max=4
66
# Project internal settings
77
internal.java.version=17
88
internal.group=io.github.problem4j
9-
internal.pom.url=https://github.com/malczuuu/problem4j-spring
9+
internal.pom.url=https://github.com/problem4j/problem4j-spring
1010
internal.pom.inception-year=2025
1111
internal.pom.licenses.0.name=MIT License
1212
internal.pom.licenses.0.url=https://opensource.org/license/MIT
1313
internal.pom.developers.0.id=malczuuu
1414
internal.pom.developers.0.name=Damian Malczewski
1515
internal.pom.developers.0.url=https://github.com/malczuuu
1616
internal.pom.issue-management.system=GitHub Issues
17-
internal.pom.issue-management.url=https://github.com/malczuuu/problem4j-spring/issues
18-
internal.pom.scm.connection=scm:git:https://github.com/malczuuu/problem4j-spring.git
19-
internal.pom.scm.developer-connection=scm:git:git@github.com:malczuuu/problem4j-spring.git
20-
internal.pom.scm.url=https://malczuuu/problem4j-spring
17+
internal.pom.issue-management.url=https://github.com/problem4j/problem4j-spring/issues
18+
internal.pom.scm.connection=scm:git:https://github.com/problem4j/problem4j-spring.git
19+
internal.pom.scm.developer-connection=scm:git:git@github.com:problem4j/problem4j-spring.git
20+
internal.pom.scm.url=https://github.com/problem4j/problem4j-spring

problem4j-spring-bom/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BOM of Problem4J
22

3-
[![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-spring-bom?filter=1.1.*)](https://central.sonatype.com/artifact/io.github.malczuuu.problem4j/problem4j-spring-bom)
3+
[![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-spring-bom?filter=1.1.*)](https://central.sonatype.com/artifact/io.github.problem4j/problem4j-spring-bom)
44

55
Bill Of Materials (BOM) for the Spring integrations of **Problem4J**, a library implementing *RFC 7807 - Problem Details
66
for HTTP APIs*.
@@ -18,13 +18,13 @@ Add the BOM to `implementation(platform(...))`, then declare modules without ver
1818

1919
```kotlin
2020
dependencies {
21-
implementation(platform("io.github.malczuuu.problem4j:problem4j-spring-bom:{version}"))
21+
implementation(platform("io.github.problem4j:problem4j-spring-bom:{version}"))
2222

23-
implementation("io.github.malczuuu.problem4j:problem4j-core")
24-
implementation("io.github.malczuuu.problem4j:problem4j-jackson")
25-
implementation("io.github.malczuuu.problem4j:problem4j-spring-web")
26-
implementation("io.github.malczuuu.problem4j:problem4j-spring-webmvc")
27-
implementation("io.github.malczuuu.problem4j:problem4j-spring-webflux")
23+
implementation("io.github.problem4j:problem4j-core")
24+
implementation("io.github.problem4j:problem4j-jackson")
25+
implementation("io.github.problem4j:problem4j-spring-web")
26+
implementation("io.github.problem4j:problem4j-spring-webmvc")
27+
implementation("io.github.problem4j:problem4j-spring-webflux")
2828
}
2929
```
3030

@@ -36,7 +36,7 @@ Add the BOM to `<dependencyManagement>` with `import` scope, then declare module
3636
<dependencyManagement>
3737
<dependencies>
3838
<dependency>
39-
<groupId>io.github.malczuuu.problem4j</groupId>
39+
<groupId>io.github.problem4j</groupId>
4040
<artifactId>problem4j-spring-bom</artifactId>
4141
<version>{version}</version>
4242
<type>pom</type>
@@ -47,28 +47,28 @@ Add the BOM to `<dependencyManagement>` with `import` scope, then declare module
4747

4848
<dependencies>
4949
<dependency>
50-
<groupId>io.github.malczuuu.problem4j</groupId>
50+
<groupId>io.github.problem4j</groupId>
5151
<artifactId>problem4j-core</artifactId>
5252
</dependency>
5353
<dependency>
54-
<groupId>io.github.malczuuu.problem4j</groupId>
54+
<groupId>io.github.problem4j</groupId>
5555
<artifactId>problem4j-jackson</artifactId>
5656
</dependency>
5757
<dependency>
58-
<groupId>io.github.malczuuu.problem4j</groupId>
58+
<groupId>io.github.problem4j</groupId>
5959
<artifactId>problem4j-spring-web</artifactId>
6060
</dependency>
6161
<dependency>
62-
<groupId>io.github.malczuuu.problem4j</groupId>
62+
<groupId>io.github.problem4j</groupId>
6363
<artifactId>problem4j-spring-webmvc</artifactId>
6464
</dependency>
6565
<dependency>
66-
<groupId>io.github.malczuuu.problem4j</groupId>
66+
<groupId>io.github.problem4j</groupId>
6767
<artifactId>problem4j-spring-webflux</artifactId>
6868
</dependency>
6969
</dependencies>
7070
```
7171

72-
[problem4j-core]: https://github.com/malczuuu/problem4j-core
72+
[problem4j-core]: https://github.com/problem4j/problem4j-core
7373

74-
[problem4j-jackson]: https://github.com/malczuuu/problem4j-jackson
74+
[problem4j-jackson]: https://github.com/problem4j/problem4j-jackson

problem4j-spring-webflux/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ RFC 7807 `Problem` objects, with exceptions that are specific to `spring-webflux
1212
- It can be overwritten further by declaring a custom `ErrorWebExceptionHandler` component.
1313
- Exclude [`ProblemErrorWebFluxConfiguration`][ProblemErrorWebFluxConfiguration] do disable this override.
1414

15-
[ProblemErrorWebExceptionHandler]: src/main/java/io/github/malczuuu/problem4j/spring/webflux/error/ProblemErrorWebExceptionHandler.java
15+
[ProblemErrorWebExceptionHandler]: src/main/java/io/github/problem4j/spring/webflux/error/ProblemErrorWebExceptionHandler.java
1616

17-
[ProblemErrorWebFluxConfiguration]: src/main/java/io/github/malczuuu/problem4j/spring/webflux/error/ProblemErrorWebFluxConfiguration.java
17+
[ProblemErrorWebFluxConfiguration]: src/main/java/io/github/problem4j/spring/webflux/error/ProblemErrorWebFluxConfiguration.java

problem4j-spring-webmvc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ distinguishes between `Accept` header to display a formatted page or JSON with b
2626
- It can be overwritten further by declaring a custom `ErrorController` component.
2727
- Exclude [`ProblemErrorMvcConfiguration`][ProblemErrorMvcConfiguration] do disable this override.
2828

29-
[ProblemErrorController]: src/main/java/io/github/malczuuu/problem4j/spring/webmvc/error/ProblemErrorController.java
29+
[ProblemErrorController]: src/main/java/io/github/problem4j/spring/webmvc/error/ProblemErrorController.java
3030

31-
[ProblemErrorMvcConfiguration]: src/main/java/io/github/malczuuu/problem4j/spring/webmvc/error/ProblemErrorMvcConfiguration.java
31+
[ProblemErrorMvcConfiguration]: src/main/java/io/github/problem4j/spring/webmvc/error/ProblemErrorMvcConfiguration.java

0 commit comments

Comments
 (0)