Bump versions.

This commit is contained in:
Stephan Schnabel 2020-09-16 16:14:22 +02:00
parent afa294ba4f
commit 776cbf6cdf
Signed by: stephan.schnabel
GPG key ID: F74FE2422AA07290
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>io.kokuwa</groupId> <groupId>io.kokuwa</groupId>
<artifactId>maven-parent</artifactId> <artifactId>maven-parent</artifactId>
<version>0.1.0</version> <version>0.2.0</version>
<relativePath /> <relativePath />
</parent> </parent>

View file

@ -2,7 +2,7 @@ package io.kokuwa.micronaut.logging;
import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.MethodOrderer.Alphanumeric; import org.junit.jupiter.api.MethodOrderer.MethodName;
import org.junit.jupiter.api.TestMethodOrder; import org.junit.jupiter.api.TestMethodOrder;
import org.slf4j.MDC; import org.slf4j.MDC;
@ -14,7 +14,7 @@ import io.micronaut.test.annotation.MicronautTest;
* @author Stephan Schnabel * @author Stephan Schnabel
*/ */
@MicronautTest @MicronautTest
@TestMethodOrder(Alphanumeric.class) @TestMethodOrder(MethodName.class)
public abstract class AbstractTest { public abstract class AbstractTest {
@BeforeEach @BeforeEach