pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>game-module</artifactId>
  7. <groupId>com.zanxiang.game</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>game-manage</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <artifactId>game-mybatis</artifactId>
  15. <groupId>com.zanxiang.game</groupId>
  16. <version>0.0.1-SNAPSHOT</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.zanxiang.game</groupId>
  20. <artifactId>game-common-redis</artifactId>
  21. <version>${game-common-redis.vertion}</version>
  22. </dependency>
  23. <!-- spring boot默认不去扫描 bootstrap.yml文件了 -->
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.zanxiang.module</groupId>
  30. <artifactId>zx-oss</artifactId>
  31. <version>1.0.0-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.zanxiang.module</groupId>
  35. <artifactId>zx-web</artifactId>
  36. <version>1.0.0-SNAPSHOT</version>
  37. </dependency>
  38. <!-- 谷歌http工具类 -->
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>5.8.0.M1</version>
  43. </dependency>
  44. <!-- erp权限 -->
  45. <dependency>
  46. <groupId>com.zanxiang.erp</groupId>
  47. <artifactId>erp-security</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.dubbo</groupId>
  51. <artifactId>dubbo-spring-boot-starter</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.dubbo</groupId>
  55. <artifactId>dubbo-metadata-definition-protobuf</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-compiler-plugin</artifactId>
  63. <version>3.1</version>
  64. <configuration>
  65. <source>8</source>
  66. <target>8</target>
  67. <encoding>${project.build.sourceEncoding}</encoding>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <version>2.5.14</version>
  74. <configuration>
  75. <includeSystemScope>true</includeSystemScope>
  76. </configuration>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>