Skip to content

Commit

Permalink
Replace ${bootique.version} with ${project.version}
Browse files Browse the repository at this point in the history
  • Loading branch information
stariy95 committed Nov 21, 2024
1 parent d8c4d50 commit 450ef26
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
</modules>

<properties>
<bootique.version>${project.version}</bootique.version>
<!-- TODO: we are bringing the entire huge Spring framework to just use a few scheduling classes, and no injection -->
<!-- Note that Spring > 5 requires Java 17 -->
<spring.version>5.3.34</spring.version>
Expand All @@ -62,27 +61,27 @@
<dependency>
<groupId>io.bootique</groupId>
<artifactId>bootique</artifactId>
<version>${bootique.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.bootique</groupId>
<artifactId>bootique-junit5</artifactId>
<version>${bootique.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.bootique.logback</groupId>
<artifactId>bootique-logback</artifactId>
<version>${bootique.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.bootique.curator</groupId>
<artifactId>bootique-curator</artifactId>
<version>${bootique.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.bootique.metrics</groupId>
<artifactId>bootique-metrics</artifactId>
<version>${bootique.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand Down

0 comments on commit 450ef26

Please sign in to comment.