pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>common</artifactId>
  6. <name>common</name>
  7. <description>common</description>
  8. <parent>
  9. <artifactId>eas-system</artifactId>
  10. <groupId>com.koobietech.eas</groupId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.afterturn</groupId>
  16. <artifactId>easypoi-spring-boot-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-data-redis</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-beans</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.auth0</groupId>
  28. <artifactId>java-jwt</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>name.remal.tools.test</groupId>
  36. <artifactId>junit4</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.koobietech.eas</groupId>
  40. <artifactId>dao</artifactId>
  41. <version>0.0.1-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.security</groupId>
  45. <artifactId>spring-security-core</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <repositories>
  49. <repository>
  50. <id>aliyun</id>
  51. <name>aliyun</name>
  52. <url>https://maven.aliyun.com/repository/public</url>
  53. <releases>
  54. <enabled>true</enabled>
  55. </releases>
  56. <snapshots>
  57. <enabled>false</enabled>
  58. </snapshots>
  59. </repository>
  60. </repositories>
  61. </project>