pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <dependency>
  34. <groupId>com.koobietech.eas</groupId>
  35. <artifactId>common</artifactId>
  36. <version>0.0.1-SNAPSHOT</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.koobietech.eas</groupId>
  41. <artifactId>security</artifactId>
  42. <version>0.0.1-SNAPSHOT</version>
  43. </dependency>
  44. </dependencies>
  45. <parent>
  46. <artifactId>eas-system</artifactId>
  47. <groupId>com.koobietech.eas</groupId>
  48. <version>0.0.1-SNAPSHOT</version>
  49. </parent>
  50. <repositories>
  51. <repository>
  52. <id>aliyun</id>
  53. <name>aliyun</name>
  54. <url>https://maven.aliyun.com/repository/public</url>
  55. <releases>
  56. <enabled>true</enabled>
  57. </releases>
  58. <snapshots>
  59. <enabled>false</enabled>
  60. </snapshots>
  61. </repository>
  62. </repositories>
  63. </project>