Skip to content

Commit

Permalink
Use property and dependency BOM.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed May 30, 2024
1 parent d360247 commit a8964c1
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<!-- Third-party dependencies. -->
<com.io7m.junit.version>5.10.2</com.io7m.junit.version>
<jqwik.version>1.8.5</jqwik.version>
<net.byte-buddy.version>1.14.16</net.byte-buddy.version>
</properties>

<licenses>
Expand Down Expand Up @@ -148,19 +149,16 @@

<!-- Test suite -->
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.16.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${com.io7m.junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${com.io7m.junit.version}</version>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.16.1</version>
</dependency>
<dependency>
<groupId>net.jqwik</groupId>
Expand All @@ -187,12 +185,12 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.14.16</version>
<version>${net.byte-buddy.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.14.16</version>
<version>${net.byte-buddy.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit a8964c1

Please sign in to comment.