pom.xml 2.8 KB

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