pom.xml 2.3 KB

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