pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>cn.afterturn</groupId>
  11. <artifactId>easypoi-spring-boot-starter</artifactId>
  12. </dependency>
  13. <dependency>
  14. <groupId>com.github.pagehelper</groupId>
  15. <artifactId>pagehelper-spring-boot-starter</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-beans</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-context</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.koobietech.eas</groupId>
  27. <artifactId>dao</artifactId>
  28. <version>0.0.1-SNAPSHOT</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.koobietech.eas</groupId>
  33. <artifactId>mbg</artifactId>
  34. <version>0.0.1-SNAPSHOT</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.koobietech.eas</groupId>
  39. <artifactId>common</artifactId>
  40. <version>0.0.1-SNAPSHOT</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-security</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.anji-plus</groupId>
  49. <artifactId>captcha</artifactId>
  50. <version>1.3.0</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. </dependencies>
  54. <parent>
  55. <artifactId>eas-system</artifactId>
  56. <groupId>com.koobietech.eas</groupId>
  57. <version>0.0.1-SNAPSHOT</version>
  58. </parent>
  59. <repositories>
  60. <repository>
  61. <id>aliyun</id>
  62. <name>aliyun</name>
  63. <url>https://maven.aliyun.com/repository/public</url>
  64. <releases>
  65. <enabled>true</enabled>
  66. </releases>
  67. <snapshots>
  68. <enabled>false</enabled>
  69. </snapshots>
  70. </repository>
  71. </repositories>
  72. </project>