Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion acceptance-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus-parent</artifactId>
<version>49-SNAPSHOT</version>
<version>50-SNAPSHOT</version>
</parent>
<properties>
<maven.compiler.release>17</maven.compiler.release>
Expand Down
6 changes: 5 additions & 1 deletion base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus-parent</artifactId>
<version>49-SNAPSHOT</version>
<version>50-SNAPSHOT</version>
</parent>
<properties>
<maven.compiler.parameters>true</maven.compiler.parameters>
Expand Down Expand Up @@ -50,6 +50,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.qute.web</groupId>
<artifactId>quarkus-qute-web</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client</artifactId>
Expand Down
1 change: 0 additions & 1 deletion base/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ quarkus.package.jar.type=fast-jar
quarkus.banner.path=banner.txt

# Logging
quarkus.log.file.enable=false
quarkus.log.sentry.enabled=false
quarkus.log.sentry.in-app-packages=io.quarkus.code
quarkus.log.sentry.release=${io.quarkus.code.git-commit-id:unknown}
Expand Down
2 changes: 1 addition & 1 deletion community-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus-parent</artifactId>
<version>49-SNAPSHOT</version>
<version>50-SNAPSHOT</version>
</parent>

<artifactId>code-quarkus-community-app</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus-parent</artifactId>
<version>49-SNAPSHOT</version>
<version>50-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<code-quarkus.version>${project.version}</code-quarkus.version>
Expand All @@ -16,8 +16,8 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>3.25.2</quarkus.platform.version>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.26.3</quarkus.platform.version>

<skipITs>true</skipITs>
<surefire-plugin.version>3.5.2</surefire-plugin.version>
Expand Down Expand Up @@ -105,7 +105,7 @@
<plugin>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>3.2.7</version>
<version>3.4.0</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
2 changes: 1 addition & 1 deletion web-deps/locker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus-parent</artifactId>
<version>49-SNAPSHOT</version>
<version>50-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>code-quarkus-web-deps-locker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion web-deps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus-parent</artifactId>
<version>49-SNAPSHOT</version>
<version>50-SNAPSHOT</version>
</parent>
<dependencyManagement>
<dependencies>
Expand Down
Loading