diff --git a/spring-spel/pom.xml b/spring-spel/pom.xml
index 12b7164e27..add5e53348 100644
--- a/spring-spel/pom.xml
+++ b/spring-spel/pom.xml
@@ -46,7 +46,53 @@
true
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 2.19.1
+
+
+ **/*IntegrationTest.java
+ **/*LiveTest.java
+
+
+
+
+
+ integration
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+
+
+ integration-test
+
+ test
+
+
+
+ **/*LiveTest.java
+
+
+ **/*IntegrationTest.java
+
+
+
+
+
+
+ json
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-spel/src/test/java/com/baeldung/spel/SpelTest.java b/spring-spel/src/test/java/com/baeldung/spel/SpelIntegrationTest.java
similarity index 99%
rename from spring-spel/src/test/java/com/baeldung/spel/SpelTest.java
rename to spring-spel/src/test/java/com/baeldung/spel/SpelIntegrationTest.java
index 5cf18bc1d2..bff42caead 100644
--- a/spring-spel/src/test/java/com/baeldung/spel/SpelTest.java
+++ b/spring-spel/src/test/java/com/baeldung/spel/SpelIntegrationTest.java
@@ -13,7 +13,7 @@ import static org.junit.Assert.assertThat;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:applicationContext.xml"})
-public class SpelTest {
+public class SpelIntegrationTest {
@Autowired
private SpelArithmetic spelArithmetic = new SpelArithmetic();