pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>gw-cloud-platform-dcproj</artifactId>
  7. <groupId>cn.com.goldenwater</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>gw-cloud-platform-dcproj-basetools</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>net.sf.json-lib</groupId>
  16. <artifactId>json-lib</artifactId>
  17. <version>2.4</version>
  18. <classifier>jdk15</classifier>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.httpcomponents</groupId>
  22. <artifactId>httpclient</artifactId>
  23. <version>4.5.6</version>
  24. </dependency>
  25. <!-- Commons Lang for string utils -->
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-lang3</artifactId>
  29. <version>3.8.1</version>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  32. <dependency>
  33. <groupId>com.auth0</groupId>
  34. <artifactId>java-jwt</artifactId>
  35. <version>3.3.0</version>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
  38. <dependency>
  39. <groupId>io.jsonwebtoken</groupId>
  40. <artifactId>jjwt</artifactId>
  41. <version>0.9.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>javax.servlet-api</artifactId>
  46. <version>4.0.0</version>
  47. <scope>compile</scope>
  48. <!-- 打war包时 使用下面的配置 -->
  49. <!-- <scope>provided</scope>-->
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.com.goldenwater</groupId>
  53. <artifactId>gw-cloud-core</artifactId>
  54. <version>0.0.1-SNAPSHOT</version>
  55. <exclusions>
  56. <exclusion>
  57. <artifactId>slf4j-log4j12</artifactId>
  58. <groupId>org.slf4j</groupId>
  59. </exclusion>
  60. <exclusion>
  61. <artifactId>logback-classic</artifactId>
  62. <groupId>ch.qos.logback</groupId>
  63. </exclusion>
  64. <exclusion>
  65. <artifactId>logback-core</artifactId>
  66. <groupId>ch.qos.logback</groupId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-logging</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.github.oshi</groupId>
  76. <artifactId>oshi-core</artifactId>
  77. <version>5.8.2</version>
  78. <scope>compile</scope>
  79. </dependency>
  80. <!-- POI for Excel and Word processing -->
  81. <dependency>
  82. <groupId>org.apache.poi</groupId>
  83. <artifactId>poi</artifactId>
  84. <version>4.1.2</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-ooxml</artifactId>
  89. <version>4.1.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.poi</groupId>
  93. <artifactId>poi-ooxml-schemas</artifactId>
  94. <version>4.1.2</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.poi</groupId>
  98. <artifactId>ooxml-schemas</artifactId>
  99. <version>1.4</version>
  100. </dependency>
  101. <!-- XMLBeans for POI -->
  102. <dependency>
  103. <groupId>org.apache.xmlbeans</groupId>
  104. <artifactId>xmlbeans</artifactId>
  105. <version>3.1.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.poi</groupId>
  109. <artifactId>poi-scratchpad</artifactId>
  110. <version>4.1.2</version>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <configuration>
  119. <source>1.8</source>
  120. <target>1.8</target>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>