Skip to content

Commit b4891bf

Browse files
authored
refactor: update groupId and package to io.github.reqstool (#133)
* chore: migrate groupId from se.lfv.reqstool to io.github.reqstool - 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 * docs: update groupId, version, and repo references - Update groupId to io.github.reqstool in installation.adoc - Fix artifactId to reqstool-java-annotations in installation.adoc - Update version to 0.1.0 in installation.adoc and antora.yml - Update GitHub repo references from Luftfartsverket to reqstool * chore: update all URLs from Luftfartsverket to reqstool org - Update pom.xml project, SCM, issue and CI management URLs - Update docs/antora-playbook.yml site URL - Update schema URLs in AbstractAnnotationsProcessor.java and test YAMLs * chore: update developer info to reqstool org * chore: remove .claude from tracking and add to .gitignore
1 parent 25dc935 commit b4891bf

File tree

19 files changed

+50
-50
lines changed

19 files changed

+50
-50
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ buildNumber.properties
4545
### VisualStudioCode ###
4646
.vscode/*
4747

48+
.claude/

README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
image:https://img.shields.io/github/commit-activity/m/Luftfartsverket/reqstool-java-annotations?label=commits&style=for-the-badge["Commit Activity", link="https://github.com/Luftfartsverket/reqstool-java-annotations/pulse"]
3-
image:https://img.shields.io/github/issues/Luftfartsverket/reqstool-java-annotations?style=for-the-badge&logo=github["GitHub Issues", link="https://github.com/Luftfartsverket/reqstool-java-annotations/issues"]
2+
image:https://img.shields.io/github/commit-activity/m/reqstool/reqstool-java-annotations?label=commits&style=for-the-badge["Commit Activity", link="https://github.com/reqstool/reqstool-java-annotations/pulse"]
3+
image:https://img.shields.io/github/issues/reqstool/reqstool-java-annotations?style=for-the-badge&logo=github["GitHub Issues", link="https://github.com/reqstool/reqstool-java-annotations/issues"]
44
image:https://img.shields.io/badge/Java-21-brightgreen.svg?style=for-the-badge["JVM support", link="https://sdkman.io"]
5-
image:https://img.shields.io/github/license/Luftfartsverket/reqstool-java-annotations?style=for-the-badge&logo=opensourceinitiative["License", link="https://opensource.org/license/mit/"]
6-
image:https://img.shields.io/github/actions/workflow/status/Luftfartsverket/reqstool-java-annotations/build.yml?style=for-the-badge&logo=github["Build", link="https://github.com/Luftfartsverket/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://luftfartsverket.github.io/reqstool-java-annotations/reqstool-java-annotations/0.0.1/index.html"]
5+
image:https://img.shields.io/github/license/reqstool/reqstool-java-annotations?style=for-the-badge&logo=opensourceinitiative["License", link="https://opensource.org/license/mit/"]
6+
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"]

docs/antora-playbook.yml

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

33
site:
44
title: Reqstool Java Annotations Documentation
5-
url: https://github.com/luftfartsverket/reqstool-java-annotations
5+
url: https://github.com/reqstool/reqstool-java-annotations
66
start_page: reqstool-java-annotations::index.adoc
77

88
content:

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.0.1
5+
version: 0.1.0
66
nav:
77
- modules/ROOT/nav.adoc

docs/modules/ROOT/pages/installation.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ To add dependency using Maven, add the following to your `pom.xml`:
55
[source,xml]
66
----
77
<dependency>
8-
<groupId>se.lfv.reqstool</groupId>
9-
<artifactId>reqstool-annotations-java</artifactId>
10-
<version>0.0.6</version>
8+
<groupId>io.github.reqstool</groupId>
9+
<artifactId>reqstool-java-annotations</artifactId>
10+
<version>0.1.0</version>
1111
</dependency>
1212
----
1313

pom.xml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>se.lfv.reqstool</groupId>
7+
<groupId>io.github.reqstool</groupId>
88
<artifactId>reqstool-java-annotations</artifactId>
9-
<version>0.1.5</version>
9+
<version>0.1.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
1313
<description>Requirements Tools - Java Annotations</description>
14-
<url>https://github.com/Luftfartsverket/reqstool-java-annotations</url>
14+
<url>https://github.com/reqstool/reqstool-java-annotations</url>
1515

1616
<licenses>
1717
<license>
@@ -22,24 +22,23 @@
2222

2323
<developers>
2424
<developer>
25-
<name>LFV System Development Team</name>
26-
<email>sysdev@lfv.se</email>
27-
<organization>Luftfartsverket</organization>
28-
<organizationUrl>http://www.lfv.se</organizationUrl>
25+
<name>Reqstool Contributors</name>
26+
<organization>reqstool</organization>
27+
<organizationUrl>https://github.com/reqstool</organizationUrl>
2928
</developer>
3029
</developers>
3130

3231
<scm>
33-
<connection>scm:git:https://github.com/Luftfartsverket/reqstool-java-annotations.git</connection>
34-
<url>https://github.com/Luftfartsverket/reqstool-java-annotations</url>
32+
<connection>scm:git:https://github.com/reqstool/reqstool-java-annotations.git</connection>
33+
<url>https://github.com/reqstool/reqstool-java-annotations</url>
3534
</scm>
3635
<issueManagement>
3736
<system>Github</system>
38-
<url>https://github.com/Luftfartsverket/reqstool-java-annotations/issues</url>
37+
<url>https://github.com/reqstool/reqstool-java-annotations/issues</url>
3938
</issueManagement>
4039
<ciManagement>
4140
<system>Github</system>
42-
<url>https://github.com/Luftfartsverket/reqstool-java-annotations/actions</url>
41+
<url>https://github.com/reqstool/reqstool-java-annotations/actions</url>
4342
</ciManagement>
4443

4544
<properties>

src/main/java/se/lfv/reqstool/annotations/Requirements.java renamed to src/main/java/io/github/reqstool/annotations/Requirements.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright © LFV
2-
package se.lfv.reqstool.annotations;
2+
package io.github.reqstool.annotations;
33

44
import java.lang.annotation.Documented;
55

src/main/java/se/lfv/reqstool/annotations/SVCs.java renamed to src/main/java/io/github/reqstool/annotations/SVCs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright © LFV
2-
package se.lfv.reqstool.annotations;
2+
package io.github.reqstool.annotations;
33

44
import java.lang.annotation.Documented;
55
import java.lang.annotation.ElementType;

src/main/java/se/lfv/reqstool/processor/AbstractAnnotationsProcessor.java renamed to src/main/java/io/github/reqstool/processor/AbstractAnnotationsProcessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright © LFV
2-
package se.lfv.reqstool.processor;
2+
package io.github.reqstool.processor;
33

44
import java.io.IOException;
55
import java.io.OutputStreamWriter;
@@ -45,7 +45,7 @@ public String getYmlElementKey() {
4545

4646
}
4747

48-
private static final String YAML_LANG_SERVER_SCHEMA_INFO = "# yaml-language-server: $schema=https://raw.githubusercontent.com/Luftfartsverket/reqstool-client/main/src/reqstool/resources/schemas/v1/annotations.schema.json";
48+
private static final String YAML_LANG_SERVER_SCHEMA_INFO = "# yaml-language-server: $schema=https://raw.githubusercontent.com/reqstool/reqstool-client/main/src/reqstool/resources/schemas/v1/annotations.schema.json";
4949

5050
private AnnotationTypes annotationTypes;
5151

src/main/java/se/lfv/reqstool/processor/AnnotationInfo.java renamed to src/main/java/io/github/reqstool/processor/AnnotationInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright © LFV
2-
package se.lfv.reqstool.processor;
2+
package io.github.reqstool.processor;
33

44
import javax.lang.model.element.ElementKind;
55

0 commit comments

Comments
 (0)