pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.com.qmth.examcloud.core.basic</groupId>
  8. <artifactId>examcloud-core-basic</artifactId>
  9. <version>2.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>examcloud-core-basic-dao</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>mysql</groupId>
  15. <artifactId>mysql-connector-java</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-data-jpa</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.hibernate</groupId>
  23. <artifactId>hibernate-validator</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.com.qmth.examcloud.commons</groupId>
  27. <artifactId>examcloud-commons-util</artifactId>
  28. <version>${examcloud.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.com.qmth.examcloud.commons</groupId>
  32. <artifactId>examcloud-commons-support</artifactId>
  33. <version>${examcloud.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.com.qmth.examcloud.commons</groupId>
  37. <artifactId>examcloud-commons-dto</artifactId>
  38. <version>${examcloud.version}</version>
  39. </dependency>
  40. </dependencies>
  41. </project>