Skip to content

Commit 7941e84

Browse files
authored
Merge pull request #234 from quarkiverse/upgrade_to_3
update for quarkus 3.0.0 (javax/jakarta)
2 parents 141d4b2 + 299865b commit 7941e84

File tree

15 files changed

+26
-27
lines changed

15 files changed

+26
-27
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If you want to add your own custom way to handle the LogRecords.
4646
You can create your own implementations of `io.quarkiverse.loggingjson.JsonProvider`, and provide it using CDI.
4747
Example implementation:
4848
```java
49-
import javax.inject.Singleton;
49+
import jakarta.inject.Singleton;
5050
import java.io.IOException;
5151

5252
import io.quarkiverse.loggingjson.JsonProvider;

deployment/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.quarkiverse.loggingjson</groupId>
66
<artifactId>quarkus-logging-json-parent</artifactId>
7-
<version>2.0.2-SNAPSHOT</version>
7+
<version>3.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>io.quarkiverse.loggingjson</groupId>
3131
<artifactId>quarkus-logging-json</artifactId>
32-
<version>2.0.2-SNAPSHOT</version>
32+
<version>3.0.0-SNAPSHOT</version>
3333
</dependency>
3434
<!-- test dependencies -->
3535
<dependency>

deployment/src/test/java/io/quarkiverse/loggingjson/deployment/providers/custom/CustomJsonProviderJsonbTest.java

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

33
import java.util.Collections;
44

5-
import javax.inject.Inject;
5+
import jakarta.inject.Inject;
66

77
import org.jboss.shrinkwrap.api.ShrinkWrap;
88
import org.jboss.shrinkwrap.api.spec.JavaArchive;

deployment/src/test/java/io/quarkiverse/loggingjson/deployment/providers/custom/FirstCustomJsonProvider.java

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

33
import java.io.IOException;
44

5-
import javax.enterprise.context.ApplicationScoped;
5+
import jakarta.enterprise.context.ApplicationScoped;
66

77
import org.jboss.logmanager.ExtLogRecord;
88

deployment/src/test/java/io/quarkiverse/loggingjson/deployment/providers/custom/SecondCustomJsonProvider.java

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

33
import java.io.IOException;
44

5-
import javax.inject.Singleton;
5+
import jakarta.inject.Singleton;
66

77
import org.jboss.logmanager.ExtLogRecord;
88

deployment/src/test/java/io/quarkiverse/loggingjson/deployment/providers/custom/ThirdCustomJsonProvider.java

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

33
import java.io.IOException;
44

5-
import javax.inject.Singleton;
5+
import jakarta.inject.Singleton;
66

77
import org.jboss.logmanager.ExtLogRecord;
88

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.quarkiverse.loggingjson</groupId>
66
<artifactId>quarkus-logging-json-parent</artifactId>
7-
<version>2.0.2-SNAPSHOT</version>
7+
<version>3.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.quarkiverse.loggingjson</groupId>
66
<artifactId>quarkus-logging-json-parent</artifactId>
7-
<version>2.0.2-SNAPSHOT</version>
7+
<version>3.0.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

integration-tests/src/main/java/io/quarkiverse/loggingjson/it/CustomJsonProvider.java

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

33
import java.io.IOException;
44

5-
import javax.inject.Singleton;
5+
import jakarta.inject.Singleton;
66

77
import org.jboss.logmanager.ExtLogRecord;
88

integration-tests/src/main/java/io/quarkiverse/loggingjson/it/GreetingResource.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
import java.util.logging.Logger;
44

5-
import javax.ws.rs.GET;
6-
import javax.ws.rs.Path;
7-
import javax.ws.rs.Produces;
8-
import javax.ws.rs.core.MediaType;
5+
import jakarta.ws.rs.GET;
6+
import jakarta.ws.rs.Path;
7+
import jakarta.ws.rs.Produces;
8+
import jakarta.ws.rs.core.MediaType;
99

1010
@Path("/hello")
1111
public class GreetingResource {

0 commit comments

Comments
 (0)