Skip to content

Instantly share code, notes, and snippets.

@javamultiplex
Created September 28, 2017 09:54
Show Gist options
  • Save javamultiplex/e6d6147c591c421b613174423e21d212 to your computer and use it in GitHub Desktop.
Save javamultiplex/e6d6147c591c421b613174423e21d212 to your computer and use it in GitHub Desktop.
pom.xml for DOM XML Parser
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.javamultiplex</groupId>
<artifactId>DOM</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment