diff --git a/jhipster-5/bookstore-monolith/pom.xml b/jhipster-5/bookstore-monolith/pom.xml
index 411de0e712..ccf7a3c85e 100644
--- a/jhipster-5/bookstore-monolith/pom.xml
+++ b/jhipster-5/bookstore-monolith/pom.xml
@@ -1090,6 +1090,66 @@
+
+ integration-lite-first
+
+
+
+ com.github.eirslett
+ frontend-maven-plugin
+
+
+
+ install node and npm
+ none
+
+
+ npm install
+ none
+
+
+ webpack build dev
+ none
+
+
+ webpack build test
+ none
+
+
+
+
+
+
+
+ integration-lite-second
+
+
+
+ com.github.eirslett
+ frontend-maven-plugin
+
+
+
+ install node and npm
+ none
+
+
+ npm install
+ none
+
+
+ webpack build dev
+ none
+
+
+ webpack build test
+ none
+
+
+
+
+
+
diff --git a/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerIntegrationTest.java b/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerIntegrationTest.java
index 80fa0edd96..d3b73637a4 100644
--- a/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerIntegrationTest.java
+++ b/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerIntegrationTest.java
@@ -5,7 +5,6 @@ import com.google.common.flogger.LoggerConfig;
import com.google.common.flogger.StackSize;
import org.junit.Test;
-import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
import java.util.stream.IntStream;
@@ -25,13 +24,6 @@ public class FloggerIntegrationTest {
});
}
- @Test
- public void givenATimeInterval_shouldLogAfterEveryTimeInterval() {
- IntStream.range(0, 1_000_0000).forEach(value -> {
- logger.atInfo().atMostEvery(10, TimeUnit.SECONDS).log("This log shows [every 10 seconds] => %d", value);
- });
- }
-
@Test
public void givenAnObject_shouldLogTheObject() {
User user = new User();
diff --git a/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerManualTest.java b/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerManualTest.java
new file mode 100644
index 0000000000..a3444e596e
--- /dev/null
+++ b/logging-modules/flogger/src/test/java/com/baeldung/flogger/FloggerManualTest.java
@@ -0,0 +1,25 @@
+package com.baeldung.flogger;
+
+import java.util.concurrent.TimeUnit;
+import java.util.stream.IntStream;
+
+import org.junit.Test;
+
+import com.google.common.flogger.FluentLogger;
+
+public class FloggerManualTest {
+ static {
+// System.setProperty("flogger.backend_factory", "com.google.common.flogger.backend.log4j.Log4jBackendFactory#getInstance");
+ System.setProperty("flogger.backend_factory",
+ "com.google.common.flogger.backend.slf4j.Slf4jBackendFactory#getInstance");
+ }
+ private static final FluentLogger logger = FluentLogger.forEnclosingClass();
+
+ @Test
+ public void givenATimeInterval_shouldLogAfterEveryTimeInterval() {
+ IntStream.range(0, 1_000_0000).forEach(value -> {
+ logger.atInfo().atMostEvery(10, TimeUnit.SECONDS).log("This log shows [every 10 seconds] => %d", value);
+ });
+ }
+
+}
diff --git a/pom.xml b/pom.xml
index 963267fee5..a8bd79f3f5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -366,7 +366,7 @@
atomix
aws-modules
-
+
axon
azure
@@ -836,7 +836,7 @@
atomix
aws-modules
-
+
axon
azure
@@ -895,7 +895,7 @@
helidon
apache-httpclient
httpclient-simple
- hystrix
+ hystrix
jackson-modules
jackson-simple
@@ -1209,6 +1209,7 @@
jenkins/plugins
jhipster
+ jhipster-5
jws
libraries
@@ -1326,7 +1327,7 @@
quarkus-vs-springboot
quarkus-jandex
spring-boot-modules/spring-boot-cassandre
- spring-boot-modules/spring-boot-camel
+ spring-boot-modules/spring-boot-camel
testing-modules/testing-assertions
persistence-modules/fauna
lightrun
diff --git a/restx/src/main/resources/restx/demo/settings.properties b/restx/src/main/resources/restx/demo/settings.properties
index a03c2eea97..3b2b591922 100644
--- a/restx/src/main/resources/restx/demo/settings.properties
+++ b/restx/src/main/resources/restx/demo/settings.properties
@@ -1 +1,2 @@
-app.name=restx-demo
\ No newline at end of file
+app.name=restx-demo
+restx.stats.share.enable=false
\ No newline at end of file
diff --git a/spring-5/src/test/java/com/baeldung/Example1IntegrationTest.java b/spring-5/src/test/java/com/baeldung/Example1ManualTest.java
similarity index 93%
rename from spring-5/src/test/java/com/baeldung/Example1IntegrationTest.java
rename to spring-5/src/test/java/com/baeldung/Example1ManualTest.java
index 8b9e66213f..c3330b4213 100644
--- a/spring-5/src/test/java/com/baeldung/Example1IntegrationTest.java
+++ b/spring-5/src/test/java/com/baeldung/Example1ManualTest.java
@@ -7,7 +7,7 @@ import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
-public class Example1IntegrationTest {
+public class Example1ManualTest {
@Test
public void test1a() {
diff --git a/spring-5/src/test/java/com/baeldung/Example2IntegrationTest.java b/spring-5/src/test/java/com/baeldung/Example2ManualTest.java
similarity index 93%
rename from spring-5/src/test/java/com/baeldung/Example2IntegrationTest.java
rename to spring-5/src/test/java/com/baeldung/Example2ManualTest.java
index 6ed53ca4e9..9c47b17fdb 100644
--- a/spring-5/src/test/java/com/baeldung/Example2IntegrationTest.java
+++ b/spring-5/src/test/java/com/baeldung/Example2ManualTest.java
@@ -7,7 +7,7 @@ import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
-public class Example2IntegrationTest {
+public class Example2ManualTest {
@Test
public void test1a() {
diff --git a/spring-5/src/test/java/com/baeldung/ParallelIntegrationTest.java b/spring-5/src/test/java/com/baeldung/ParallelManualTest.java
similarity index 62%
rename from spring-5/src/test/java/com/baeldung/ParallelIntegrationTest.java
rename to spring-5/src/test/java/com/baeldung/ParallelManualTest.java
index 1ce96de4ef..5c3a111c62 100644
--- a/spring-5/src/test/java/com/baeldung/ParallelIntegrationTest.java
+++ b/spring-5/src/test/java/com/baeldung/ParallelManualTest.java
@@ -5,18 +5,18 @@ import org.junit.experimental.ParallelComputer;
import org.junit.runner.Computer;
import org.junit.runner.JUnitCore;
-public class ParallelIntegrationTest {
+public class ParallelManualTest {
@Test
public void runTests() {
- final Class>[] classes = { Example1IntegrationTest.class, Example2IntegrationTest.class };
+ final Class>[] classes = { Example1ManualTest.class, Example2ManualTest.class };
JUnitCore.runClasses(new Computer(), classes);
}
@Test
public void runTestsInParallel() {
- final Class>[] classes = { Example1IntegrationTest.class, Example2IntegrationTest.class };
+ final Class>[] classes = { Example1ManualTest.class, Example2ManualTest.class };
JUnitCore.runClasses(new ParallelComputer(true, true), classes);
}
diff --git a/spring-5/src/test/java/com/baeldung/jupiter/Spring5JUnit5ParallelIntegrationTest.java b/spring-5/src/test/java/com/baeldung/jupiter/Spring5JUnit5ParallelManualTest.java
similarity index 60%
rename from spring-5/src/test/java/com/baeldung/jupiter/Spring5JUnit5ParallelIntegrationTest.java
rename to spring-5/src/test/java/com/baeldung/jupiter/Spring5JUnit5ParallelManualTest.java
index 55b0fcf267..b9ed87ed73 100644
--- a/spring-5/src/test/java/com/baeldung/jupiter/Spring5JUnit5ParallelIntegrationTest.java
+++ b/spring-5/src/test/java/com/baeldung/jupiter/Spring5JUnit5ParallelManualTest.java
@@ -1,24 +1,24 @@
package com.baeldung.jupiter;
-import com.baeldung.Example1IntegrationTest;
-import com.baeldung.Example2IntegrationTest;
+import com.baeldung.Example1ManualTest;
+import com.baeldung.Example2ManualTest;
import org.junit.experimental.ParallelComputer;
import org.junit.jupiter.api.Test;
import org.junit.runner.Computer;
import org.junit.runner.JUnitCore;
-class Spring5JUnit5ParallelIntegrationTest {
+class Spring5JUnit5ParallelManualTest {
@Test
void givenTwoTestClasses_whenJUnitRunParallel_thenTheTestsExecutingParallel() {
- final Class>[] classes = { Example1IntegrationTest.class, Example2IntegrationTest.class };
+ final Class>[] classes = { Example1ManualTest.class, Example2ManualTest.class };
JUnitCore.runClasses(new ParallelComputer(true, true), classes);
}
@Test
void givenTwoTestClasses_whenJUnitRunParallel_thenTheTestsExecutingLinear() {
- final Class>[] classes = { Example1IntegrationTest.class, Example2IntegrationTest.class };
+ final Class>[] classes = { Example1ManualTest.class, Example2ManualTest.class };
JUnitCore.runClasses(new Computer(), classes);
}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/PropertiesReloadIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/PropertiesReloadManualTest.java
similarity index 99%
rename from spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/PropertiesReloadIntegrationTest.java
rename to spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/PropertiesReloadManualTest.java
index 0c28cb085b..88e22af4ba 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/PropertiesReloadIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/reloading/PropertiesReloadManualTest.java
@@ -24,7 +24,7 @@ import org.springframework.web.context.WebApplicationContext;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = SpringBootPropertiesTestApplication.class)
-public class PropertiesReloadIntegrationTest {
+public class PropertiesReloadManualTest {
protected MockMvc mvc;