Skip to content

Commit

Permalink
Externalize csb version property
Browse files Browse the repository at this point in the history
  • Loading branch information
Croway committed Sep 5, 2023
1 parent 3e86841 commit cca4cc1
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,16 @@
<spring.boot-version>{{ .SpringBootVersion }}</spring.boot-version>
<surefire.plugin.version>3.0.0-M4</surefire.plugin.version>
<jkube.generator.from>registry.access.redhat.com/ubi8/openjdk-11:1.14</jkube.generator.from>
<camel.spring.boot-version>{{ .CamelSpringBootVersion }}</camel.spring.boot-version>
{{ .AdditionalProperties }}
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.redhat.camel.springboot.platform</groupId>
<artifactId>camel-springboot-bom</artifactId>
<version>{{ .CamelSpringBootVersion }}</version>
<artifactId>camel-spring-boot-bom</artifactId>
<version>${camel.spring.boot-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -86,6 +87,15 @@
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot-version}</version>
</plugin>
<plugin>
<groupId>com.redhat.camel.springboot.platform</groupId>
<artifactId>patch-maven-plugin</artifactId>
<version>${camel.spring.boot-version}</version>
<extensions>true</extensions>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit cca4cc1

Please sign in to comment.