4c04e9fb377ca33161ebc45d51666cb803b9b710.svn-base 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  26. <dependency>
  27. <groupId>com.auth0</groupId>
  28. <artifactId>java-jwt</artifactId>
  29. <version>3.3.0</version>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
  32. <dependency>
  33. <groupId>io.jsonwebtoken</groupId>
  34. <artifactId>jjwt</artifactId>
  35. <version>0.9.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>javax.servlet-api</artifactId>
  40. <version>4.0.0</version>
  41. <scope>compile</scope>
  42. <!-- 打war包时 使用下面的配置 -->
  43. <!-- <scope>provided</scope>-->
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.com.goldenwater</groupId>
  47. <artifactId>gw-cloud-core</artifactId>
  48. <version>0.0.1-SNAPSHOT</version>
  49. <exclusions>
  50. <exclusion>
  51. <artifactId>slf4j-log4j12</artifactId>
  52. <groupId>org.slf4j</groupId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.github.oshi</groupId>
  58. <artifactId>oshi-core</artifactId>
  59. <version>5.8.2</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <configuration>
  69. <source>1.8</source>
  70. <target>1.8</target>
  71. </configuration>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>