Skip to content

Commit ec1921a

Browse files
committed
Update project coordinates
1 parent d09729a commit ec1921a

File tree

5 files changed

+28
-28
lines changed

5 files changed

+28
-28
lines changed

.github/copilot-instructions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
- **Root Files:** `build.gradle.kts`, `settings.gradle.kts`, `README.md`, `RELEASING.md`, `gradlew`, `gradlew.bat`,
4141
`gradle/libs.versions.toml`, `.github/workflows/`.
42-
- **Source Code:** `src/main/java/io/github/malczuuu/problem4j/core/`.
43-
- **Tests:** `src/test/java/io/github/malczuuu/problem4j/core/`.
42+
- **Source Code:** `src/main/java/io/github/problem4j/core/`.
43+
- **Tests:** `src/test/java/io/github/problem4j/core/`.
4444
- **Build Scripts:** All modules have `build.gradle.kts`.
4545
- **Build Utils:** Custom Gradle scripts in `buildSrc`.
4646

@@ -62,8 +62,8 @@
6262

6363
- Trust these instructions for build, test, lint, and validation steps. Only search the codebase if information here is
6464
incomplete or incorrect.
65-
- Prioritize changes in `src/main/java/io/github/malczuuu/problem4j/core/` for core logic, and
66-
`src/test/java/io/github/malczuuu/problem4j/core/` for tests.
65+
- Prioritize changes in `src/main/java/io/github/problem4j/core/` for core logic, and
66+
`src/test/java/io/github/problem4j/core/` for tests.
6767
- Always validate changes with a full build and test run before considering the task complete.
6868

6969
## Troubleshooting & Workarounds

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-core/discussions
71+
[discussions]: https://github.com/problem4j/problem4j-core/discussions
7272

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

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

README.md

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

3-
[![Build Status](https://github.com/malczuuu/problem4j-core/actions/workflows/gradle-build.yml/badge.svg)](https://github.com/malczuuu/problem4j-core/actions/workflows/gradle-build.yml)
4-
[![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-core)](https://central.sonatype.com/artifact/io.github.malczuuu.problem4j/problem4j-core)
5-
[![License](https://img.shields.io/github/license/malczuuu/problem4j-core)](https://github.com/malczuuu/problem4j-core/blob/main/LICENSE)
3+
[![Build Status](https://github.com/problem4j/problem4j-core/actions/workflows/gradle-build.yml/badge.svg)](https://github.com/problem4j/problem4j-core/actions/workflows/gradle-build.yml)
4+
[![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-core)](https://central.sonatype.com/artifact/io.github.problem4j/problem4j-core)
5+
[![License](https://img.shields.io/github/license/problem4j/problem4j-core)](https://github.com/problem4j/problem4j-core/blob/main/LICENSE)
66

77
This library provides a minimal, framework-agnostic Java model of the [RFC 7807][rfc7807] "Problem Details" object, with
88
an immutable `Problem` class and a fluent `ProblemBuilder` for convenient construction.
@@ -36,8 +36,8 @@ It is intended to be used as a **foundation** for other libraries or application
3636
## Example
3737

3838
```java
39-
import io.github.malczuuu.problem4j.core.Problem;
40-
import io.github.malczuuu.problem4j.core.ProblemException;
39+
import io.github.problem4j.core.Problem;
40+
import io.github.problem4j.core.ProblemException;
4141

4242
Problem problem =
4343
Problem.builder()
@@ -59,7 +59,7 @@ higher is required to use this library.
5959
```xml
6060
<dependencies>
6161
<dependency>
62-
<groupId>io.github.malczuuu.problem4j</groupId>
62+
<groupId>io.github.problem4j</groupId>
6363
<artifactId>problem4j-core</artifactId>
6464
<version>1.2.5</version>
6565
</dependency>
@@ -68,7 +68,7 @@ higher is required to use this library.
6868
2. Gradle (Groovy or Kotlin DSL):
6969
```groovy
7070
dependencies {
71-
implementation("io.github.malczuuu.problem4j:problem4j-core:1.2.5")
71+
implementation("io.github.problem4j:problem4j-core:1.2.5")
7272
}
7373
```
7474
@@ -114,12 +114,12 @@ version. By default, the version is derived from git commit hash.
114114

115115
</details>
116116

117-
[maven-central]: https://central.sonatype.com/artifact/io.github.malczuuu.problem4j/problem4j-core
117+
[maven-central]: https://central.sonatype.com/artifact/io.github.problem4j/problem4j-core
118118

119-
[problem4j-core]: https://github.com/malczuuu/problem4j-core
119+
[problem4j-core]: https://github.com/problem4j/problem4j-core
120120

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

123-
[problem4j-spring]: https://github.com/malczuuu/problem4j-spring
123+
[problem4j-spring]: https://github.com/problem4j/problem4j-spring
124124

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

RELEASING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ See `./tools/tagrelease --help` for reference.
88

99
## Maven Central
1010

11-
[![Publish Release Status](https://github.com/malczuuu/problem4j-core/actions/workflows/gradle-publish-release.yml/badge.svg)][gradle-publish-release]
12-
[![Sonatype](https://img.shields.io/maven-central/v/io.github.malczuuu.problem4j/problem4j-core)][maven-central]
11+
[![Publish Release Status](https://github.com/problem4j/problem4j-core/actions/workflows/gradle-publish-release.yml/badge.svg)][gradle-publish-release]
12+
[![Sonatype](https://img.shields.io/maven-central/v/io.github.problem4j/problem4j-core)][maven-central]
1313

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

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

41-
[gradle-publish-release]: https://github.com/malczuuu/problem4j-core/actions/workflows/gradle-publish-release.yml
41+
[gradle-publish-release]: https://github.com/problem4j/problem4j-core/actions/workflows/gradle-publish-release.yml
4242

4343
[gradle-publish-release.yml]: .github/workflows/gradle-publish-release.yml
4444

45-
[maven-central]: https://central.sonatype.com/artifact/io.github.malczuuu.problem4j/problem4j-core
45+
[maven-central]: https://central.sonatype.com/artifact/io.github.problem4j/problem4j-core

gradle.properties

Lines changed: 7 additions & 7 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=8
88
internal.group=io.github.problem4j
9-
internal.pom.url=https://github.com/malczuuu/problem4j-core
9+
internal.pom.url=https://github.com/problem4j/problem4j-core
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
13-
internal.pom.developers.0.id=malczuuu
13+
internal.pom.developers.0.id=problem4j
1414
internal.pom.developers.0.name=Damian Malczewski
15-
internal.pom.developers.0.url=https://github.com/malczuuu
15+
internal.pom.developers.0.url=https://github.com/problem4j
1616
internal.pom.issue-management.system=GitHub Issues
17-
internal.pom.issue-management.url=https://github.com/malczuuu/problem4j-core/issues
18-
internal.pom.scm.connection=scm:git:https://github.com/malczuuu/problem4j-core.git
19-
internal.pom.scm.developer-connection=scm:git:git@github.com:malczuuu/problem4j-core.git
20-
internal.pom.scm.url=https://malczuuu/problem4j-core
17+
internal.pom.issue-management.url=https://github.com/problem4j/problem4j-core/issues
18+
internal.pom.scm.connection=scm:git:https://github.com/problem4j/problem4j-core.git
19+
internal.pom.scm.developer-connection=scm:git:git@github.com:problem4j/problem4j-core.git
20+
internal.pom.scm.url=https://problem4j/problem4j-core

0 commit comments

Comments
 (0)