Skip to content

Releases: scordio/jimfs-junit-jupiter

v0.3.2

12 Jul 09:07
Compare
Choose a tag to compare

⚡ Improvements

  • Add JSpecify and NullAway #27
  • Update JUnit's Javadoc link #28

🔨 Dependency Upgrades

  • Upgrade to Jimfs 1.3.1
  • Upgrade to JUnit BOM 5.13.3

❤️ Contributors

Thanks to all the contributors who worked on this release:

@marcphilipp

v0.3.1

18 May 09:44
Compare
Choose a tag to compare

⚡ Improvements

  • Publish releases via Central Publisher Portal #23

🔨 Dependency Upgrades

  • Upgrade to JUnit BOM 5.12.2

v0.3.0

07 Feb 07:49
Compare
Choose a tag to compare

🐛 Bug Fixes

  • Fix module name, align build to maven-compile-plugin guidelines #18

🔨 Dependency Upgrades

  • Upgrade to JUnit BOM 5.11.4

v0.2.0

08 Sep 10:16
Compare
Choose a tag to compare

✨ New Features

  • Add jimfs.junit.jupiter.tempdir.configuration.default configuration parameter #1

🔨 Dependency Upgrades

  • Upgrade to JUnit BOM 5.11.0

v0.1.0

30 Jul 16:26
Compare
Choose a tag to compare

The first release of Jimfs JUnit Jupiter.

Maven

<dependency>
  <groupId>io.github.scordio</groupId>
  <artifactId>jimfs-junit-jupiter</artifactId>
  <version>0.1.0</version>
  <scope>test</scope>
</dependency>

Gradle

testImplementation("io.github.scordio:jimfs-junit-jupiter:0.1.0")

Quick Start

import io.github.scordio.jimfs.junit.jupiter.JimfsTempDir;

...

@Test
void test(@JimfsTempDir Path tempDir) {
  // test body
}