Skip to content

Commit

Permalink
Merge pull request #9 from FontysVenlo/bumps
Browse files Browse the repository at this point in the history
feat: test dependencies updated and including archunit
  • Loading branch information
lenntt authored Dec 10, 2024
2 parents d25507e + 922a699 commit e949e59
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<description>Fontys Venlo Informatics POM</description>
<groupId>io.github.fontysvenlo</groupId>
<artifactId>informaticspom</artifactId>
<version>1.4</version>
<version>1.5</version>
<packaging>pom</packaging>
<name>FontysVenlo :: InformaticsPom</name>
<url>https://fontysvenlo.github.io/informaticspom/</url>
Expand Down Expand Up @@ -45,10 +45,10 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.release>21</java.release>
<mockito.core.version>5.9.0</mockito.core.version>
<junit.jupiter.version>5.10.1</junit.jupiter.version>
<assertj.core.version>3.25.1</assertj.core.version>
<jacoco.version>0.8.11</jacoco.version>
<mockito.core.version>5.14.2</mockito.core.version>
<junit.jupiter.version>5.11.3</junit.jupiter.version>
<assertj.core.version>3.26.3</assertj.core.version>
<jacoco.version>0.8.12</jacoco.version>
<!-- empty argline is used by surefire and set by jacoco profile -->
<jacocoArgLine></jacocoArgLine>
<argLine></argLine>
Expand All @@ -58,6 +58,7 @@
// assertions.fail, uses CDATA instead of plain xml text, so for the time being stay at 2.22.2 -->
<maven.surefire.version>3.2.5</maven.surefire.version>
<maven.compiler.release>${java.release}</maven.compiler.release>
<archunit.version>1.3.0</archunit.version>
<!-- Main class for the jar -->
<exec.main></exec.main>
</properties>
Expand Down Expand Up @@ -281,12 +282,12 @@
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.15.3</version>
<version>1.17.2</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.1.1</version>
<version>1.2.1</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -324,6 +325,11 @@
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<version>${archunit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<reporting>
Expand Down Expand Up @@ -395,6 +401,11 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
Expand Down

0 comments on commit e949e59

Please sign in to comment.