Skip to content

Commit 7a887fd

Browse files
authored
Fix config and improve parent pom (#1261)
1 parent f62b7c1 commit 7a887fd

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

base/src/main/java/io/quarkus/code/config/CodeQuarkusConfig.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ public interface CodeQuarkusConfig {
1111

1212
String name();
1313

14+
Optional<String> favicon();
15+
1416
Optional<String> quarkusPlatformVersion();
1517

1618
Optional<String> quarkusDevtoolsVersion();

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<version>5-SNAPSHOT</version>
77
<packaging>pom</packaging>
88
<properties>
9+
<code-quarkus.version>${project.version}</code-quarkus.version>
10+
911
<compiler-plugin.version>3.11.0</compiler-plugin.version>
1012
<maven.compiler.release>21</maven.compiler.release>
1113
<maven.compiler.source>21</maven.compiler.source>
@@ -63,6 +65,11 @@
6365
<type>pom</type>
6466
<scope>import</scope>
6567
</dependency>
68+
<dependency>
69+
<groupId>io.quarkus.code</groupId>
70+
<artifactId>code-quarkus</artifactId>
71+
<version>${project.version}</version>
72+
</dependency>
6673
<dependency>
6774
<groupId>io.quarkiverse.web-bundler</groupId>
6875
<artifactId>quarkus-web-bundler</artifactId>

0 commit comments

Comments
 (0)