pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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>runeconmy-nx</artifactId>
  7. <groupId>org.example</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.projectlombok</groupId>
  16. <artifactId>lombok</artifactId>
  17. <optional>true</optional>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.hutool</groupId>
  21. <artifactId>hutool-all</artifactId>
  22. <version>5.8.25</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-webflux</artifactId>
  27. </dependency>
  28. <!-- SpringBoot整合Web组件 -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-logging</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>druid-spring-boot-starter</artifactId>
  46. <version>1.1.10</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>mybatis-plus-boot-starter</artifactId>
  51. <version>3.5.7</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-generator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.freemarker</groupId>
  59. <artifactId>freemarker</artifactId>
  60. <version>2.3.28</version>
  61. </dependency>
  62. <!--mysql-connector-java-->
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.oracle</groupId>
  69. <artifactId>ojdbc6</artifactId>
  70. <version>11.2.0.3</version>
  71. </dependency>
  72. <!--常用工具类 -->
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-lang</groupId>
  79. <artifactId>commons-lang</artifactId>
  80. <version>2.4</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-math3</artifactId>
  85. <version>3.6.1</version>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>cglib</groupId>
  90. <artifactId>cglib</artifactId>
  91. <version>2.2.2</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger2</artifactId>
  97. <version>2.7.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.codehaus.jackson</groupId>
  101. <artifactId>jackson-mapper-asl</artifactId>
  102. <version>1.9.13</version>
  103. <scope>compile</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-httpclient</groupId>
  107. <artifactId>commons-httpclient</artifactId>
  108. <version>3.1</version>
  109. <scope>compile</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.auth0</groupId>
  113. <artifactId>java-jwt</artifactId>
  114. <version>3.11.0</version>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <version>2.3.7.RELEASE</version>
  123. <configuration>
  124. <classifier>exec</classifier>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>