pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.5.RELEASE</version>
  9. </parent>
  10. <groupId>com.jkcredit</groupId>
  11. <artifactId>sys-news</artifactId>
  12. <version>1.0</version>
  13. <name>sys-news</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  18. <model-mapper.version>2.3.0</model-mapper.version>
  19. <fluent-validator.version>1.0.9</fluent-validator.version>
  20. <zalando.version>0.23.0</zalando.version>
  21. <fastjson.version>1.2.51</fastjson.version>
  22. <jsonwebtoken.version>0.9.0</jsonwebtoken.version>
  23. <commons.beanutils.version>1.9.4</commons.beanutils.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-security</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>org.junit.vintage</groupId>
  50. <artifactId>junit-vintage-engine</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.security</groupId>
  56. <artifactId>spring-security-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>mysql</groupId>
  61. <artifactId>mysql-connector-java</artifactId>
  62. <scope>runtime</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.modelmapper</groupId>
  66. <artifactId>modelmapper</artifactId>
  67. <version>${model-mapper.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.baomidou</groupId>
  71. <artifactId>mybatis-plus-boot-starter</artifactId>
  72. <version>${mybatis-plus.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baidu.unbiz</groupId>
  76. <artifactId>fluent-validator-jsr303</artifactId>
  77. <version>${fluent-validator.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.zalando</groupId>
  81. <artifactId>problem-spring-web</artifactId>
  82. <version>${zalando.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>fastjson</artifactId>
  87. <version>${fastjson.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.jsonwebtoken</groupId>
  91. <artifactId>jjwt</artifactId>
  92. <version>${jsonwebtoken.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-lang</groupId>
  96. <artifactId>commons-lang</artifactId>
  97. <version>2.6</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>commons-beanutils</groupId>
  101. <artifactId>commons-beanutils</artifactId>
  102. <version>${commons.beanutils.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-swagger2</artifactId>
  107. <version>2.6.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>io.springfox</groupId>
  111. <artifactId>springfox-swagger-ui</artifactId>
  112. <version>2.6.1</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>