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 <l...@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;