Skip to content

Commit

Permalink
chore: Update Quarkus example dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Dec 9, 2023
1 parent 8eb0620 commit 5f1d8c7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions analyzer/src/it/Examples/quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<groupId>nl.basjes.parse.useragent</groupId>
<artifactId>yauaa-example-parent-it</artifactId>
<version>0.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>yauaa-example-quarkus</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@

import nl.basjes.parse.useragent.UserAgentAnalyzer;

import javax.annotation.PostConstruct;
import javax.ws.rs.GET;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import jakarta.annotation.PostConstruct;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.HeaderParam;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;

@Path("/parse")
public class ParseService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

package nl.basjes.parse.useragent.quarkus;

import io.quarkus.test.junit.NativeImageTest;
import io.quarkus.test.junit.QuarkusIntegrationTest;

@NativeImageTest
public class NativeParseServiceIT extends ParseServiceTest {
@QuarkusIntegrationTest
public class ParseServiceIT extends ParseServiceTest {

// Execute the same tests but in native mode.
// Execute the same tests but as an integration test.
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<yauaa.version>${project.version}</yauaa.version>

<kotlin.version>1.9.21</kotlin.version>
<quarkus.platform.version>2.8.0.Final</quarkus.platform.version>
<quarkus.platform.version>3.6.1</quarkus.platform.version>
<quarkus-plugin.version>${quarkus.platform.version}</quarkus-plugin.version>

<scala-library.version>2.13.12</scala-library.version>
Expand Down

0 comments on commit 5f1d8c7

Please sign in to comment.