Skip to content

Instantly share code, notes, and snippets.

@claraj
Last active November 8, 2017 04:40
Show Gist options
  • Save claraj/f7264fbeb2773c545a17f24e7fcf2c0f to your computer and use it in GitHub Desktop.
Save claraj/f7264fbeb2773c545a17f24e7fcf2c0f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<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>VetProgram</groupId>
<artifactId>VetProgram</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- Copy the lines between line 13 and 33 into your project -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>6.0.4</version>
</dependency>
</dependencies>
<!-- You don't need to copy anything below here -->
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment