junit5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.dbunit-rules</groupId> <artifactId>junit5</artifactId> <version>0.15.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>parent</artifactId> <groupId>com.github.dbunit-rules</groupId> <version>0.15.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>junit5</artifactId> <dependencies> <dependency> <groupId>com.github.dbunit-rules</groupId> <artifactId>core</artifactId> <version>${project.parent.version}</version> </dependency> <!-- this is all you need to write tests with JUnit Jupiter --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.0.0-M2</version> <!-- for writing tests "test" scope would suffice, but extensions are defined in the project's "main" folder, so we need "compile" --> <scope>compile</scope> </dependency> <!-- writing extensions --> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-commons</artifactId> <version>1.0.0-M2</version> <scope>compile</scope> </dependency> <!-- to execute Jupiter-tests as part of a v4-run, we need these two artifacts --> <dependency> <!-- contains the engine that actually runs the Jupiter-tests --> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.0.0-M2</version> <scope>test</scope> </dependency> <dependency> <!-- contains the runner that adapts Jupiter-tests for a v4-run --> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-runner</artifactId> <version>1.0.0-M2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.12</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>4.3.11.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>4.3.11.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <version>3.2.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <includes> <include>**/Test*.java</include> <include>**/*It.java</include> <include>**/*Test.java</include> </includes> <systemPropertyVariables> <java.util.logging.config.file> src/test/resources/logging.properties </java.util.logging.config.file> </systemPropertyVariables> </configuration> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>1.0.0-M2</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>