pom.xml 915 B

123456789101112131415161718192021222324252627282930313233
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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>java-pojo</groupId>
  5. <artifactId>java-pojo</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>Testing Java Pojo</name>
  8. <dependencies>
  9. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  10. <dependency>
  11. <groupId>mysql</groupId>
  12. <artifactId>mysql-connector-java</artifactId>
  13. <version>5.1.40</version>
  14. </dependency>
  15. </dependencies>
  16. <build>
  17. <sourceDirectory>src</sourceDirectory>
  18. <plugins>
  19. <plugin>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <version>3.6.1</version>
  22. <configuration>
  23. <source>1.8</source>
  24. <target>1.8</target>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. </project>