Skip to content

Commit

Permalink
🐴 quarkus 3.9.1 🐴
Browse files Browse the repository at this point in the history
  • Loading branch information
eformat committed Mar 30, 2024
1 parent 81ba7cc commit 31b6432
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,12 @@
</licenses>
<properties>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.project.info.reports.plugin>3.4.3</maven.project.info.reports.plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.version>3.8.3</quarkus.platform.version>
<quarkus.platform.version>3.9.1</quarkus.platform.version>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<surefire.plugin.version>3.1.0</surefire.plugin.version>
Expand Down Expand Up @@ -70,11 +69,11 @@
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive</artifactId>
<artifactId>quarkus-rest-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
<artifactId>quarkus-rest-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
6 changes: 4 additions & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ quarkus.mongodb.devservices.enabled=false
# mandatory if you don't specify the name of the database using @MongoEntity
quarkus.mongodb.database = cats
quarkus.http.cors=true
quarkus.http.cors.origins=*
quarkus.http.cors.origins=/.*/
quarkus.dev-ui.cors.enabled=false
quarkus.swagger-ui.always-include=true
quarkus.swagger-ui.theme=material
quarkus.banner.path=banner.txt
Expand All @@ -26,6 +27,7 @@ quarkus.http.http2=true
quarkus.http.port=8080
quarkus.http.ssl-port=8443
quarkus.http.ssl.certificate.key-store-file=keystore.jks
quarkus.http.ssl.certificate.key-store-password=password
quarkus.http.host=0.0.0.0

quarkus.native.additional-build-args=-H:ResourceConfigurationFiles=resources-config.json
Expand Down Expand Up @@ -56,7 +58,7 @@ quarkus.console.color=false
%test.quarkus.log.level=INFO

# rest client nsff (not safe for families)
app.petbattle.rest.client.NSFFService/mp-rest/scope=javax.inject.Singleton
app.petbattle.rest.client.NSFFService/mp-rest/scope=jakarta.inject.Singleton
app.petbattle.rest.client.NSFFService/mp-rest/url=http://localhost:5000
#app.petbattle.rest.client.NSFFService/mp-rest/url=http://tensorflowserving-pet-battle-nsff-pb.apps.hivec.sandbox1249.opentlc.com
app.petbattle.nsff.enabled=false
Expand Down
11 changes: 6 additions & 5 deletions src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ quarkus.mongodb.write-concern.journal=false
# mandatory if you don't specify the name of the database using @MongoEntity
quarkus.mongodb.database = cats
quarkus.http.cors=true
quarkus.http.cors.origins=*
quarkus.http.cors.origins=/.*/
quarkus.dev-ui.cors.enabled=false
quarkus.swagger-ui.always-include=true

# rest
quarkus.http.test-port=8081

# nsff
app.petbattle.rest.client.NSFFService/mp-rest/scope=javax.inject.Singleton
app.petbattle.rest.client.NSFFService/mp-rest/scope=jakarta.inject.Singleton
app.petbattle.rest.client.NSFFService/mp-rest/url=http://localhost:5000
#app.petbattle.rest.client.NSFFService/mp-rest/url=http://tensorflowserving-pet-battle-nsff-pb.apps.hivec.sandbox1249.opentlc.com
app.petbattle.nsff.enabled=false
Expand All @@ -23,7 +24,7 @@ app.petbattle.nsff.limit=0.6
quarkus.log.level=${QUARKUS_LOG_LEVEL:INFO}
quarkus.log.console.enable=true
quarkus.log.console.format=%d{HH:mm:ss} %-5p [%c{2.}] (%t) %s%e%n
quarkus.log.console.color=false
%dev.quarkus.log.console.color=true
%test.quarkus.log.console.color=false
quarkus.console.color=false
%dev.quarkus.console.color=true
%test.quarkus.console.color=false
%test.quarkus.log.level=INFO

0 comments on commit 31b6432

Please sign in to comment.