chore: migrate project to phoenix-oss organization
All checks were successful
Build / build (pull_request) Successful in 1m56s
All checks were successful
Build / build (pull_request) Successful in 1m56s
This commit is contained in:
parent
622ddf5cce
commit
8396157611
28 changed files with 44 additions and 44 deletions
4
.github/workflows/build.yaml
vendored
4
.github/workflows/build.yaml
vendored
|
@ -59,12 +59,12 @@ jobs:
|
|||
with:
|
||||
servers: |
|
||||
[{
|
||||
"id": "kvant",
|
||||
"id": "phoenix-oss",
|
||||
"configuration": {
|
||||
"httpHeaders": {
|
||||
"property": {
|
||||
"name": "Authorization",
|
||||
"value": "token ${{ secrets.PHOENIX_PACKAGE_WRITER_TOKEN }}"
|
||||
"value": "token ${{ secrets.ORG_PACKAGE_WRITER_TOKEN }}"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
18
pom.xml
18
pom.xml
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<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>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
|
@ -45,12 +45,12 @@
|
|||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>kvant</id>
|
||||
<url>https://git.kvant.cloud/api/packages/phoenix/maven</url>
|
||||
<id>phoenix-oss</id>
|
||||
<url>https://git.kvant.cloud/api/packages/phoenix-oss/maven</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>kvant</id>
|
||||
<url>https://git.kvant.cloud/api/packages/phoenix/maven</url>
|
||||
<id>phoenix-oss</id>
|
||||
<url>https://git.kvant.cloud/api/packages/phoenix-oss/maven</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
|
@ -67,9 +67,9 @@
|
|||
</dependencyManagement>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:ssh://git@git-ssh.kvant.cloud:2222/phoenix/quarkus-commons.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@git-ssh.kvant.cloud:2222/phoenix/quarkus-commons.git</developerConnection>
|
||||
<url>https://git.kvant.cloud/phoenix/quarkus-commons.git</url>
|
||||
<connection>scm:git:ssh://git@git-ssh.kvant.cloud:2222/phoenix-oss/quarkus-commons.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@git-ssh.kvant.cloud:2222/phoenix-oss/quarkus-commons.git</developerConnection>
|
||||
<url>https://git.kvant.cloud/phoenix-oss/quarkus-commons.git</url>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
|
||||
|
|
|
@ -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-clock-service</artifactId>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.clock;
|
||||
package ch.phoenix.oss.quarkus.commons.clock;
|
||||
|
||||
import io.quarkus.arc.DefaultBean;
|
||||
import jakarta.enterprise.context.ApplicationScoped;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.clock;
|
||||
package ch.phoenix.oss.quarkus.commons.clock;
|
||||
|
||||
import java.time.Instant;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.clock;
|
||||
package ch.phoenix.oss.quarkus.commons.clock;
|
||||
|
||||
import io.quarkus.arc.DefaultBean;
|
||||
import jakarta.enterprise.context.ApplicationScoped;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.clock;
|
||||
package ch.phoenix.oss.quarkus.commons.clock;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.clock;
|
||||
package ch.phoenix.oss.quarkus.commons.clock;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.mockito.Mockito.when;
|
|
@ -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>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.json;
|
||||
package ch.phoenix.oss.quarkus.commons.json;
|
||||
|
||||
import com.fasterxml.jackson.core.type.TypeReference;
|
||||
|
|
@ -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;
|
|
@ -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\"}");
|
||||
}
|
||||
}
|
|
@ -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-message-digest-service</artifactId>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.digest;
|
||||
package ch.phoenix.oss.quarkus.commons.digest;
|
||||
|
||||
import io.smallrye.config.ConfigMapping;
|
||||
import io.smallrye.config.WithDefault;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.digest;
|
||||
package ch.phoenix.oss.quarkus.commons.digest;
|
||||
|
||||
import java.nio.charset.Charset;
|
||||
import java.security.MessageDigest;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.digest;
|
||||
package ch.phoenix.oss.quarkus.commons.digest;
|
||||
|
||||
import io.quarkus.arc.DefaultBean;
|
||||
import jakarta.enterprise.context.ApplicationScoped;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.digest;
|
||||
package ch.phoenix.oss.quarkus.commons.digest;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.AssertionsForClassTypes.assertThatThrownBy;
|
|
@ -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-random-number-generator</artifactId>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.random;
|
||||
package ch.phoenix.oss.quarkus.commons.random;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.Random;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.random;
|
||||
package ch.phoenix.oss.quarkus.commons.random;
|
||||
|
||||
import io.quarkus.arc.DefaultBean;
|
||||
import jakarta.enterprise.context.ApplicationScoped;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.random;
|
||||
package ch.phoenix.oss.quarkus.commons.random;
|
||||
|
||||
import java.util.Random;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.random;
|
||||
package ch.phoenix.oss.quarkus.commons.random;
|
||||
|
||||
import io.quarkus.arc.DefaultBean;
|
||||
import jakarta.enterprise.context.ApplicationScoped;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.random;
|
||||
package ch.phoenix.oss.quarkus.commons.random;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.mockito.Mockito.when;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.random;
|
||||
package ch.phoenix.oss.quarkus.commons.random;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThatThrownBy;
|
|
@ -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-uuid-generator</artifactId>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.uuid;
|
||||
package ch.phoenix.oss.quarkus.commons.uuid;
|
||||
|
||||
import java.util.Random;
|
||||
import java.util.UUID;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.uuid;
|
||||
package ch.phoenix.oss.quarkus.commons.uuid;
|
||||
|
||||
import com.fasterxml.uuid.Generators;
|
||||
import io.quarkus.arc.DefaultBean;
|
|
@ -1,4 +1,4 @@
|
|||
package ch.phoenixtechnologies.quarkus.commons.uuid;
|
||||
package ch.phoenix.oss.quarkus.commons.uuid;
|
||||
|
||||
import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue