pom.xml 2.4 KB

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