Skip to content

Commit

Permalink
Maintenance:
Browse files Browse the repository at this point in the history
- bind all dependency versions to proerties
- Unset final name for assembling the native .tar.gz to unify the names
  • Loading branch information
turing85 committed Aug 19, 2024
1 parent 7c3d4ba commit e640444
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.13.2</quarkus.platform.version>
<quarkus-cucumber.version>1.1.0</quarkus-cucumber.version>

<!-- Dependency versions -->
<lombok.version>1.18.34</lombok.version>
<zxing.version>3.5.3</zxing.version>

<!-- Test dependency versions -->
<quarkus-cucumber.version>1.1.0</quarkus-cucumber.version>
<truth.version>1.4.4</truth.version>
<weld-junit5.version>4.0.3.Final</weld-junit5.version>

<!-- Project setup -->
<attach-elf.skip>true</attach-elf.skip>
<attach-fast-jar.skip>false</attach-fast-jar.skip>
Expand Down Expand Up @@ -198,7 +202,6 @@
<phase>package</phase>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<finalName>elf</finalName>
<inlineDescriptors>
<inlineDescriptor>
<id>elf</id>
Expand Down Expand Up @@ -415,13 +418,13 @@
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-junit5</artifactId>
<version>4.0.3.Final</version>
<version>${weld-junit5.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.4.4</version>
<version>${truth.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit e640444

Please sign in to comment.