diff --git a/xml/pom.xml b/xml/pom.xml
index d500d72454..bbd607f9b5 100644
--- a/xml/pom.xml
+++ b/xml/pom.xml
@@ -137,25 +137,68 @@
-
- xml
-
-
- src/main/resources
- true
-
-
-
-
- maven-compiler-plugin
- ${maven-compiler-plugin.version}
-
-
- maven-surefire-plugin
- ${maven-surefire-plugin.version}
-
-
-
+
+ xml
+
+
+ src/main/resources
+ true
+
+
+
+
+
+ org.jibx
+ maven-jibx-plugin
+
+
+
+
+
+ org.jibx
+ maven-jibx-plugin
+ ${maven-jibx-plugin.version}
+
+ src/main/resources
+
+ *-binding.xml
+
+
+ template-binding.xml
+
+ src/main/resources
+
+ *-binding.xml
+
+ true
+
+
+
+ process-classes
+ process-classes
+
+ bind
+
+
+
+ process-test-classes
+ process-test-classes
+
+ test-bind
+
+
+
+
+
+ maven-compiler-plugin
+ ${maven-compiler-plugin.version}
+
+
+ maven-surefire-plugin
+ ${maven-surefire-plugin.version}
+
+
+
diff --git a/xml/src/test/java/com/baeldung/xml/jibx/CustomerIntegrationTest.java b/xml/src/test/java/com/baeldung/xml/jibx/CustomerUnitTest.java
similarity index 94%
rename from xml/src/test/java/com/baeldung/xml/jibx/CustomerIntegrationTest.java
rename to xml/src/test/java/com/baeldung/xml/jibx/CustomerUnitTest.java
index be28dfe00a..9a4b5bc14b 100644
--- a/xml/src/test/java/com/baeldung/xml/jibx/CustomerIntegrationTest.java
+++ b/xml/src/test/java/com/baeldung/xml/jibx/CustomerUnitTest.java
@@ -11,7 +11,7 @@ import java.io.InputStream;
import static junit.framework.Assert.assertEquals;
-public class CustomerIntegrationTest {
+public class CustomerUnitTest {
@Test
public void whenUnmarshalXML_ThenFieldsAreMapped() throws JiBXException, FileNotFoundException {
@@ -21,7 +21,7 @@ public class CustomerIntegrationTest {
InputStream inputStream = classLoader.getResourceAsStream("Customer1.xml");
Customer customer = (Customer) uctx.unmarshalDocument(inputStream, null);
- assertEquals("Stefan Jaegar", customer.getPerson().getName());
+ assertEquals("Stefan Jaeger", customer.getPerson().getName());
assertEquals("Davos Dorf", customer.getCity());
}