All Downloads are FREE. Search and download functionalities are using the official Maven repository.

neer.junit-pioneer.2.0.0.source-code.module-info Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
/**
 * JUnit Pioneer provides extensions for JUnit 5
 * and its Jupiter API.
 *
 * 

Pioneer does not limit itself to proven ideas with wide application but is purposely open to * experimentation. It aims to spin off successful and cohesive portions into sibling projects or back * into the JUnit 5 code base. * *

The dependencies on Jupiter modules could be marked as transitive but that would * allow users who depend on this module to not `require` org.junit.*, which would be backwards. */ module org.junitpioneer { // see Javadoc for why these aren't transitive requires org.junit.jupiter.api; requires org.junit.jupiter.params; requires org.junit.platform.launcher; requires static com.fasterxml.jackson.core; requires static com.fasterxml.jackson.databind; exports org.junitpioneer.vintage; exports org.junitpioneer.jupiter; exports org.junitpioneer.jupiter.cartesian; exports org.junitpioneer.jupiter.params; exports org.junitpioneer.jupiter.json; opens org.junitpioneer.vintage to org.junit.platform.commons; opens org.junitpioneer.jupiter to org.junit.platform.commons; opens org.junitpioneer.jupiter.cartesian to org.junit.platform.commons; opens org.junitpioneer.jupiter.issue to org.junit.platform.commons; opens org.junitpioneer.jupiter.params to org.junit.platform.commons; opens org.junitpioneer.jupiter.resource to org.junit.platform.commons; opens org.junitpioneer.jupiter.json to org.junit.platform.commons, com.fasterxml.jackson.databind; provides org.junit.platform.launcher.TestExecutionListener with org.junitpioneer.jupiter.issue.IssueExtensionExecutionListener; uses org.junitpioneer.jupiter.IssueProcessor; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy