pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>service</artifactId>
  6. <name>service</name>
  7. <description>service</description>
  8. <dependencies>
  9. <dependency>
  10. <groupId>com.github.pagehelper</groupId>
  11. <artifactId>pagehelper-spring-boot-starter</artifactId>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.springframework</groupId>
  15. <artifactId>spring-beans</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-context</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.koobietech.eas</groupId>
  23. <artifactId>dao</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.koobietech.eas</groupId>
  29. <artifactId>mbg</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. </dependencies>
  34. <parent>
  35. <artifactId>eas-system</artifactId>
  36. <groupId>com.koobietech.eas</groupId>
  37. <version>0.0.1-SNAPSHOT</version>
  38. </parent>
  39. <repositories>
  40. <repository>
  41. <id>aliyun</id>
  42. <name>aliyun</name>
  43. <url>https://maven.aliyun.com/repository/public</url>
  44. <releases>
  45. <enabled>true</enabled>
  46. </releases>
  47. <snapshots>
  48. <enabled>false</enabled>
  49. </snapshots>
  50. </repository>
  51. </repositories>
  52. </project>