Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>webserver</groupId>
  5. <artifactId>BibliotekMandagsOpgave</artifactId>
  6. <version>0.1</version>
  7. <packaging>jar</packaging>
  8. <pluginRepositories>
  9. <pluginRepository>
  10. <id>central</id>
  11. <name>Central Repository</name>
  12. <url>https://repo.maven.apache.org/maven2</url>
  13. <layout>default</layout>
  14. <snapshots>
  15. <enabled>false</enabled>
  16. </snapshots>
  17. <releases>
  18. <updatePolicy>never</updatePolicy>
  19. </releases>
  20. </pluginRepository>
  21. </pluginRepositories>
  22. <repositories>
  23. <repository>
  24. <id>central</id>
  25. <name>Central Repository</name>
  26. <url>https://repo.maven.apache.org/maven2</url>
  27. <layout>default</layout>
  28. <snapshots>
  29. <enabled>false</enabled>
  30. </snapshots>
  31. </repository>
  32. </repositories>
  33. <properties>
  34. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  35. <maven.compiler.source>1.8</maven.compiler.source>
  36. <maven.compiler.target>1.8</maven.compiler.target>
  37. </properties>
  38.  
  39. <dependencies>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>8.0.19</version>
  44. </dependency>
  45. </dependencies>
  46.  
  47. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement