pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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>seecoder-devcloud-common</artifactId>
  6. <version>0.1.0</version>
  7. <packaging>jar</packaging>
  8. <description>Demo project for Spring Boot</description>
  9. <parent>
  10. <artifactId>seecoder-devcloud-parent</artifactId>
  11. <groupId>cn.seecoder</groupId>
  12. <version>0.1.0</version>
  13. </parent>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  19. <jjwt.version>0.11.2</jjwt.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <version>1.18.4</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.jsonwebtoken</groupId>
  29. <artifactId>jjwt-api</artifactId>
  30. <version>${jjwt.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.jsonwebtoken</groupId>
  34. <artifactId>jjwt-impl</artifactId>
  35. <scope>runtime</scope>
  36. <version>${jjwt.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.jsonwebtoken</groupId>
  40. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  41. <scope>runtime</scope>
  42. <version>${jjwt.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>joda-time</groupId>
  46. <artifactId>joda-time</artifactId>
  47. <version>2.9.3</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-validation</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-web</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.jsonwebtoken</groupId>
  65. <artifactId>jjwt</artifactId>
  66. <version>0.9.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-lang3</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-test</artifactId>
  75. <scope>test</scope>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.junit.vintage</groupId>
  79. <artifactId>junit-vintage-engine</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.slf4j</groupId>
  85. <artifactId>slf4j-api</artifactId>
  86. </dependency>
  87. </dependencies>
  88. <dependencyManagement>
  89. <dependencies>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-dependencies</artifactId>
  93. <version>${spring-boot.version}</version>
  94. <type>pom</type>
  95. <scope>import</scope>
  96. </dependency>
  97. </dependencies>
  98. </dependencyManagement>
  99. </project>