pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <parent>
  6. <groupId>com.sunwin</groupId>
  7. <artifactId>swismp</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.sunwin.swismp</groupId>
  11. <artifactId>swismp-api</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>swismp-api</name>
  14. <description>swismp-api</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.sunwin.swismp</groupId>
  21. <artifactId>swismp-base</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-redis</artifactId>
  27. </dependency>
  28. <!--json-->
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>fastjson</artifactId>
  32. <version>1.2.47</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.fasterxml.jackson.core</groupId>
  36. <artifactId>jackson-annotations</artifactId>
  37. <version>2.2.3</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.tomcat.embed</groupId>
  41. <artifactId>tomcat-embed-core</artifactId>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/org.webjars.npm/md5 -->
  44. <dependency>
  45. <groupId>org.webjars.npm</groupId>
  46. <artifactId>md5</artifactId>
  47. <version>2.2.1</version>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
  50. <dependency>
  51. <groupId>org.apache.logging.log4j</groupId>
  52. <artifactId>log4j-core</artifactId>
  53. <version>2.12.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-httpclient</groupId>
  57. <artifactId>commons-httpclient</artifactId>
  58. <version>3.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.httpcomponents</groupId>
  62. <artifactId>httpclient</artifactId>
  63. <version>4.5.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpmime</artifactId>
  68. <version>4.5.6</version>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  71. <dependency>
  72. <groupId>com.google.code.gson</groupId>
  73. <artifactId>gson</artifactId>
  74. <version>2.8.9</version>
  75. </dependency>
  76. </dependencies>
  77. </project>