pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 1999-2019 Seata.io Group.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <parent>
  21. <groupId>io.seata</groupId>
  22. <artifactId>seata-parent</artifactId>
  23. <version>${revision}</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>seata-console</artifactId>
  27. <packaging>jar</packaging>
  28. <name>seata-console ${project.version}</name>
  29. <description>console for Seata built with Maven</description>
  30. <properties>
  31. <spring-boot-for-server.version>${spring-boot.version}</spring-boot-for-server.version>
  32. <spring-framework-for-server.version>${spring-framework.version}</spring-framework-for-server.version>
  33. </properties>
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- spring-framework-->
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-framework-bom</artifactId>
  40. <version>${spring-framework-for-server.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <!-- spring-boot -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-dependencies</artifactId>
  48. <version>${spring-boot-for-server.version}</version>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-framework-bom</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. </dependencies>
  59. </dependencyManagement>
  60. <dependencies>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-autoconfigure</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-configuration-processor</artifactId>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-web</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-security</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.servlet</groupId>
  81. <artifactId>javax.servlet-api</artifactId>
  82. </dependency>
  83. <!--<dependency>
  84. <groupId>io.jsonwebtoken</groupId>
  85. <artifactId>jjwt</artifactId>
  86. </dependency>-->
  87. <dependency>
  88. <groupId>io.jsonwebtoken</groupId>
  89. <artifactId>jjwt-api</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.jsonwebtoken</groupId>
  93. <artifactId>jjwt-impl</artifactId>
  94. <scope>runtime</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.jsonwebtoken</groupId>
  98. <artifactId>jjwt-jackson</artifactId>
  99. <scope>runtime</scope>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <resources>
  104. <resource>
  105. <directory>src/main/resources</directory>
  106. <excludes>
  107. <exclude>**/node_modules/**</exclude>
  108. </excludes>
  109. </resource>
  110. </resources>
  111. </build>
  112. </project>