pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>jutil</artifactId>
  7. <groupId>cn.reghao.jutil</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>web</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-dependencies</artifactId>
  21. <version>2.3.8.RELEASE</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. </dependencies>
  26. </dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>cn.reghao.jutil</groupId>
  30. <artifactId>jdk</artifactId>
  31. <version>1.0.0-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.google.guava</groupId>
  39. <artifactId>guava</artifactId>
  40. <version>28.0-jre</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.jsonwebtoken</groupId>
  44. <artifactId>jjwt</artifactId>
  45. <version>0.9.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.xml.bind</groupId>
  49. <artifactId>jaxb-api</artifactId>
  50. <version>2.3.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.sun.xml.bind</groupId>
  54. <artifactId>jaxb-impl</artifactId>
  55. <version>2.3.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.sun.xml.bind</groupId>
  59. <artifactId>jaxb-core</artifactId>
  60. <version>2.3.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>javax.activation</groupId>
  64. <artifactId>activation</artifactId>
  65. <version>1.1.1</version>
  66. </dependency>
  67. </dependencies>
  68. </project>