You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2019/02/19 08:56:27 UTC

[maven-ear-plugin] branch MEAR-273 created (now d39d4c6)

This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MEAR-273
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git.


      at d39d4c6  [MEAR-273] - Adding extra slash causing issues for eclipse editors

This branch includes the following new commits:

     new d39d4c6  [MEAR-273] - Adding extra slash causing issues for eclipse editors

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-ear-plugin] 01/01: [MEAR-273] - Adding extra slash causing issues for eclipse editors

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MEAR-273
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git

commit d39d4c6b97797a4645e710a2dbdafc6c103875b7
Author: Lakshminarayana Nekkanti <la...@genuitec.com>
AuthorDate: Tue Feb 19 06:02:44 2019 +0530

    [MEAR-273] - Adding extra slash causing issues for eclipse editors
---
 src/main/java/org/apache/maven/plugins/ear/ApplicationXmlWriter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/ear/ApplicationXmlWriter.java b/src/main/java/org/apache/maven/plugins/ear/ApplicationXmlWriter.java
index e5516e5..c8058af 100644
--- a/src/main/java/org/apache/maven/plugins/ear/ApplicationXmlWriter.java
+++ b/src/main/java/org/apache/maven/plugins/ear/ApplicationXmlWriter.java
@@ -265,7 +265,7 @@ final class ApplicationXmlWriter
         writer.addAttribute( "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance" );
         // CHECKSTYLE_OFF: LineLength
         writer.addAttribute( "xsi:schemaLocation",
-                             "http://xmlns.jcp.org/xml/ns/javaee/ http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd" );
+                             "http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd" );
         // CHECKSTYLE_ON: LineLength
         writer.addAttribute( "version", "8" );
         return writer;