Removed white-spacing conflict

This commit is contained in:
Adam InTae Gerard 2018-05-07 13:05:04 -07:00 committed by GitHub
parent 2636f0cc7c
commit afb5fd317b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 9 deletions

View File

@ -1,10 +1,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>xml</artifactId>
<version>0.1-SNAPSHOT</version>
<name>xml</name>
<parent>
@ -236,8 +235,8 @@
</configuration>
</plugin>
<plugin>
<!-- NOTE: We don't need a groupId specification
because the group is org.apache.maven.plugins ...which is assumed by default. -->
<!-- NOTE: We don't need a groupId specification because the group
is org.apache.maven.plugins ...which is assumed by default. -->
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archiveBaseDirectory>${project.basedir}</archiveBaseDirectory>
@ -256,10 +255,8 @@
</configuration>
<executions>
<execution>
<id>make-assembly</id><!-- this is used for
inheritance merges -->
<phase>package</phase><!-- append to the
packaging phase. -->
<id>make-assembly</id><!-- this is used for inheritance merges -->
<phase>package</phase><!-- append to the packaging phase. -->
<goals>
<goal>attached</goal><!-- goals == mojos -->
</goals>
@ -285,10 +282,10 @@
<commons-lang.version>2.4</commons-lang.version>
<java-version>1.8</java-version>
<!-- maven plugins -->
<maven-jibx-plugin.version>1.3.1</maven-jibx-plugin.version>
</properties>
</project>