chore: migrate project to phoenix-oss organization
All checks were successful
Build / build (pull_request) Successful in 1m56s

This commit is contained in:
Jorge Bornhausen 2025-05-15 15:47:53 +02:00
parent 622ddf5cce
commit 8396157611
Signed by: jorge.bornhausen
SSH key fingerprint: SHA256:X2ootOwvCeP4FoNfmVUFIKIbhq95tAgnt7Oqg3x+lfs
28 changed files with 44 additions and 44 deletions

View file

@ -3,9 +3,9 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ch.phoenixtechnologies.quarkus</groupId>
<groupId>ch.phoenix.oss</groupId>
<artifactId>quarkus-commons</artifactId>
<version>1.2.9-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>quarkus-json-service</artifactId>

View file

@ -1,4 +1,4 @@
package ch.phoenixtechnologies.quarkus.commons.json;
package ch.phoenix.oss.quarkus.commons.json;
import com.fasterxml.jackson.core.type.TypeReference;

View file

@ -1,4 +1,4 @@
package ch.phoenixtechnologies.quarkus.commons.json;
package ch.phoenix.oss.quarkus.commons.json;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;

View file

@ -1,4 +1,4 @@
package ch.phoenixtechnologies.quarkus.commons.json;
package ch.phoenix.oss.quarkus.commons.json;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
@ -67,7 +67,7 @@ class JsonServiceImplTest {
.as("Should throw IllegalArgumentException when input is invalid")
.isInstanceOf(IllegalArgumentException.class)
.hasMessage(
"Unable to read object of class [ch.phoenixtechnologies.quarkus.commons.json.JsonServiceImplTest$TestRecord] from json String: {\"name\":\"John Doe\",\"age\":\"30\"");
"Unable to read object of class [ch.phoenix.oss.quarkus.commons.json.JsonServiceImplTest$TestRecord] from json String: {\"name\":\"John Doe\",\"age\":\"30\"");
}
@Test
@ -90,6 +90,6 @@ class JsonServiceImplTest {
.as("Should throw IllegalArgumentException when input is invalid")
.isInstanceOf(IllegalArgumentException.class)
.hasMessage(
"Unable to read object of type [java.util.List<ch.phoenixtechnologies.quarkus.commons.json.JsonServiceImplTest$TestRecord>] from json String: {\"name\":\"John Doe\",\"age\":30},{\"name\":\"Jane Doe\",\"age\":\"25\"}");
"Unable to read object of type [java.util.List<ch.phoenix.oss.quarkus.commons.json.JsonServiceImplTest$TestRecord>] from json String: {\"name\":\"John Doe\",\"age\":30},{\"name\":\"Jane Doe\",\"age\":\"25\"}");
}
}