pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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>com.rongwei</groupId>
  7. <artifactId>rw-aps</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.rongwei</groupId>
  11. <artifactId>rw-aps-server</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>rw-aps-server</name>
  14. <description>rw-aps-server</description>
  15. <properties>
  16. <maven.compiler.source>11</maven.compiler.source>
  17. <maven.compiler.target>11</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <version.org.optaplanner>9.44.0.Final</version.org.optaplanner>
  20. <spring.cloud.version>2021.0.6</spring.cloud.version>
  21. <nacos.client.version>1.4.2</nacos.client.version>
  22. <mysql.version>8.0.21</mysql.version>
  23. <druid.starter.version>1.2.6</druid.starter.version>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.optaplanner</groupId>
  29. <artifactId>optaplanner-bom</artifactId>
  30. <version>${version.org.optaplanner}</version>
  31. <type>pom</type>
  32. <scope>import</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>ch.qos.logback</groupId>
  36. <artifactId>logback-classic</artifactId>
  37. <version>1.2.3</version>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-actuator</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.cloud</groupId>
  57. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  58. </dependency>
  59. <!-- optaplanner java -->
  60. <dependency>
  61. <groupId>org.optaplanner</groupId>
  62. <artifactId>optaplanner-core</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-classic</artifactId>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.optaplanner</groupId>
  71. <artifactId>optaplanner-test</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <!-- optaplanner java -->
  75. <!-- optaplanner springboot -->
  76. <!--<dependency>
  77. <groupId>org.optaplanner</groupId>
  78. <artifactId>optaplanner-spring-boot-starter</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.optaplanner</groupId>
  82. <artifactId>optaplanner-test</artifactId>
  83. <scope>test</scope>
  84. </dependency>-->
  85. <!-- optaplanner springboot -->
  86. <!-- Spring Cloud Begin -->
  87. <dependency>
  88. <groupId>com.alibaba.cloud</groupId>
  89. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.alibaba.cloud</groupId>
  93. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.cloud</groupId>
  97. <artifactId>spring-cloud-starter-openfeign</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.alibaba.nacos</groupId>
  101. <artifactId>nacos-client</artifactId>
  102. <version>${nacos.client.version}</version>
  103. </dependency>
  104. <!-- Spring Cloud End -->
  105. <dependency>
  106. <groupId>com.baomidou</groupId>
  107. <artifactId>mybatis-plus-generator</artifactId>
  108. <version>3.1.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-jdbc</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>mysql</groupId>
  116. <artifactId>mysql-connector-java</artifactId>
  117. <version>${mysql.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>druid-spring-boot-starter</artifactId>
  122. <version>${druid.starter.version}</version>
  123. </dependency>
  124. <!--<dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-lang3</artifactId>
  127. <version>3.12.0</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>javax.xml.bind</groupId>
  131. <artifactId>jaxb-api</artifactId>
  132. <version>2.3.0</version>
  133. </dependency>-->
  134. </dependencies>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>