Adding files for BAEL-2196 (#6477)

* Adding files for BAEL-2196

* modified Package structure
This commit is contained in:
Urvy Agrawal
2019-03-07 22:49:44 +05:30
committed by maibin
parent b34cdbf4e4
commit 7a029078e6
3 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.baeldung.maven.java9;
import static javax.xml.XMLConstants.XML_NS_PREFIX;
public class MavenCompilerPlugin {
public static void main(String[] args) {
System.out.println("The XML namespace prefix is: " + XML_NS_PREFIX);
}
}

View File

@@ -0,0 +1,3 @@
module com.baeldung.maven.java9 {
requires java.xml;
}