.flattened-pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.seata</groupId>
  5. <artifactId>seata-console</artifactId>
  6. <version>1.6.1</version>
  7. <name>seata-console 1.6.1</name>
  8. <description>console for Seata built with Maven</description>
  9. <url>https://seata.io</url>
  10. <organization>
  11. <name>Seata</name>
  12. <url>https://github.com/seata</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>Apache License, Version 2.0</name>
  17. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>Seata</id>
  24. <name>Seata</name>
  25. <email>dev-seata@googlegroups.com</email>
  26. <url>https://seata.io</url>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git@github.com:seata/seata.git</connection>
  31. <developerConnection>scm:git@github.com:seata/seata.git</developerConnection>
  32. <url>git@github.com:seata/seata.git</url>
  33. </scm>
  34. <issueManagement>
  35. <system>github</system>
  36. <url>https://github.com/seata/seata/issues</url>
  37. </issueManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. <version>2.5.13</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-security</artifactId>
  47. <version>2.5.13</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <version>4.0.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.jsonwebtoken</groupId>
  56. <artifactId>jjwt-api</artifactId>
  57. <version>0.10.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.jsonwebtoken</groupId>
  61. <artifactId>jjwt-impl</artifactId>
  62. <version>0.10.5</version>
  63. <scope>runtime</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.jsonwebtoken</groupId>
  67. <artifactId>jjwt-jackson</artifactId>
  68. <version>0.10.5</version>
  69. <scope>runtime</scope>
  70. </dependency>
  71. </dependencies>
  72. </project>