pom.xml 2.8 KB

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