pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>shoulder-system-center</artifactId>
  7. <groupId>cn.itlym.platform</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>system-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.itlym.platform</groupId>
  15. <artifactId>system-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.hibernate.validator</groupId>
  19. <artifactId>hibernate-validator</artifactId>
  20. <version>6.1.6.Final</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.itlym</groupId>
  25. <artifactId>shoulder-starter-beanmap</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-annotation</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.github.pagehelper</groupId>
  33. <artifactId>pagehelper</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.mybatis</groupId>
  37. <artifactId>mybatis</artifactId>
  38. <version>3.5.5</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.data</groupId>
  43. <artifactId>spring-data-jpa</artifactId>
  44. <version>3.2.4</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>