Skip to content

Commit

Permalink
Fix config and improve parent pom (#1261)
Browse files Browse the repository at this point in the history
  • Loading branch information
ia3andy authored Jan 9, 2024
1 parent f62b7c1 commit 7a887fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ public interface CodeQuarkusConfig {

String name();

Optional<String> favicon();

Optional<String> quarkusPlatformVersion();

Optional<String> quarkusDevtoolsVersion();
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<version>5-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<code-quarkus.version>${project.version}</code-quarkus.version>

<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.source>21</maven.compiler.source>
Expand Down Expand Up @@ -63,6 +65,11 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.quarkus.code</groupId>
<artifactId>code-quarkus</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.web-bundler</groupId>
<artifactId>quarkus-web-bundler</artifactId>
Expand Down

0 comments on commit 7a887fd

Please sign in to comment.