JAVA-49: Moved compiler-plugin-java-9 to maven-modules

This commit is contained in:
sampadawagde
2020-06-28 13:46:38 +05:30
parent 0f94bb868b
commit c435547f44
4 changed files with 45 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;
}