Include JUnit Pioneer in dependency upgrade check.

Closes #110
This commit is contained in:
Mark Paluch
2025-06-03 11:39:38 +02:00
parent f6168b978b
commit 05dd2ee768
2 changed files with 3 additions and 0 deletions

View File

@@ -46,6 +46,8 @@ public class Dependencies {
public static final Dependency JUNIT5 = Dependency.of("JUnit", "org.junit:junit-bom");
public static final Dependency JUNIT_PIONEER = Dependency.of("JUnit Pioneer", "org.junit-pioneer:junit-pioneer");
public static final Dependency JUNIT4 = Dependency.of("JUnit", "junit:junit");
public static final Dependency KOTLIN = Dependency.of("Kotlin", "org.jetbrains.kotlin:kotlin-bom");

View File

@@ -46,6 +46,7 @@ public class ProjectDependencies implements Streamable<ProjectDependencies.Proje
config.add(Projects.BUILD, ProjectDependency.using("jacoco", Dependencies.JACOCO));
config.add(Projects.BUILD, ProjectDependency.using("jodatime", Dependencies.JODA_TIME));
config.add(Projects.BUILD, ProjectDependency.using("junit5", Dependencies.JUNIT5));
config.add(Projects.BUILD, ProjectDependency.using("junit-pioneer", Dependencies.JUNIT_PIONEER));
config.add(Projects.BUILD, ProjectDependency.using("jmolecules", Dependencies.JMOLECULES));
config.add(Projects.BUILD,
ProjectDependency.using("jmolecules-integration", Dependencies.JMOLECULES_INTEGRATION));