JAVA-4013: Moved 2 articles to spring-testing-2

This commit is contained in:
sampadawagde 2021-01-12 19:14:11 +05:30
parent 93e1567743
commit 6052fd6bc8
5 changed files with 21 additions and 15 deletions

View File

@ -134,17 +134,6 @@
</execution>
</executions>
</plugin>
<!-- this surefire configuration allows concurrent execution;
do not remove -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<parallel>methods</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
</configuration>
</plugin>
</plugins>
</build>

View File

@ -55,7 +55,24 @@
<!-- Test containers only dependencies -->
</dependencies>
<build>
<plugins>
<!-- this surefire configuration allows concurrent execution;
do not remove -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<parallel>methods</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<testcontainers.version>1.12.2</testcontainers.version>
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
</properties>
</project>

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.baeldung.concurrent;
import org.junit.Test;
import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package com.baeldung.jupiter;
package com.baeldung.enabledif;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;

View File

@ -1,4 +1,4 @@
package com.baeldung.jupiter;
package com.baeldung.enabledif;
import static org.junit.jupiter.api.Assertions.assertTrue;