Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <groupId>org.apache.maven.plugins</groupId>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <configuration>
  13. <source>1.8</source>
  14. <target>1.8</target>
  15. </configuration>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <groupId>-</groupId>
  20. <artifactId>-</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22.  
  23. <dependencies>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>5.1.6</version>
  28. </dependency>
  29. </dependencies>
  30. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement