Skip to content

Commit 6ef68f8

Browse files
committed
chore: complete reqstool org migration (#134)
- Update pom.xml groupId to io.github.reqstool - Rename package structure from se.lfv.reqstool to io.github.reqstool - Update all imports and package declarations - Update annotation processor @SupportedAnnotationTypes references - Update test resource files with new package names - All tests passing
1 parent b4891bf commit 6ef68f8

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/publish_maven.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
java-version: "21"
2727
distribution: "temurin"
2828
server-id: central
29-
server-username: MAVEN_USERNAME
30-
server-password: MAVEN_PASSWORD
31-
gpg-private-key: ${{ secrets.SYSDEV_PRIVATE_GPG_KEY }}
32-
gpg-passphrase: MAVEN_GPG_PASSPHRASE
29+
server-username: MAVEN_CENTRAL_USERNAME
30+
server-password: MAVEN_CENTRAL_TOKEN
31+
gpg-private-key: ${{ secrets.REQSTOOL_PRIVATE_GPG_KEY }}
32+
gpg-passphrase: REQSTOOL_PRIVATE_GPG_PASSPHRASE
3333
- name: Publish to the Maven Central Repository
3434
run: mvn clean deploy
3535
env:
36-
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
37-
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
38-
MAVEN_GPG_PASSPHRASE: ${{ secrets.SYSDEV_PRIVATE_GPG_KEY_PASSPHRASE }}
36+
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
37+
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
38+
REQSTOOL_PRIVATE_GPG_PASSPHRASE: ${{ secrets.REQSTOOL_PRIVATE_GPG_PASSPHRASE }}

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ image:https://img.shields.io/github/issues/reqstool/reqstool-java-annotations?st
44
image:https://img.shields.io/badge/Java-21-brightgreen.svg?style=for-the-badge["JVM support", link="https://sdkman.io"]
55
image:https://img.shields.io/github/license/reqstool/reqstool-java-annotations?style=for-the-badge&logo=opensourceinitiative["License", link="https://opensource.org/license/mit/"]
66
image:https://img.shields.io/github/actions/workflow/status/reqstool/reqstool-java-annotations/build.yml?style=for-the-badge&logo=github["Build", link="https://github.com/reqstool/reqstool-java-annotations/actions/workflows/build.yml"]
7-
image:https://img.shields.io/badge/Documentation-blue?style=for-the-badge&link=docs["Static Badge", link="https://reqstool.github.io/reqstool-java-annotations/reqstool-java-annotations/0.1.0/index.html"]
7+
image:https://img.shields.io/badge/Documentation-blue?style=for-the-badge&link=docs["Static Badge", link="https://reqstool.github.io/reqstool-java-annotations/reqstool-java-annotations/1.0.0/index.html"]

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
name: reqstool-java-annotations
44
title: Reqstool Java Annotations
5-
version: 0.1.0
5+
version: 1.0.0
66
nav:
77
- modules/ROOT/nav.adoc

docs/modules/ROOT/pages/installation.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To add dependency using Maven, add the following to your `pom.xml`:
77
<dependency>
88
<groupId>io.github.reqstool</groupId>
99
<artifactId>reqstool-java-annotations</artifactId>
10-
<version>0.1.0</version>
10+
<version>1.0.0</version>
1111
</dependency>
1212
----
1313

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.reqstool</groupId>
88
<artifactId>reqstool-java-annotations</artifactId>
9-
<version>0.1.0</version>
9+
<version>1.0.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>

0 commit comments

Comments
 (0)