pom.xml 4.8 KB

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