pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fdkankan</groupId>
  7. <artifactId>zfb-modeling</artifactId>
  8. <version>1.0</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.3.12.RELEASE</version>
  19. <relativePath/>
  20. </parent>
  21. <dependencies>
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. <version>8.0.25</version>
  26. <scope>runtime</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus-boot-starter</artifactId>
  31. <scope>compile</scope>
  32. <version>3.4.3.4</version>
  33. </dependency>
  34. <!--mybatis-plus代码生成器-->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-generator</artifactId>
  38. <scope>compile</scope>
  39. <version>3.5.1</version>
  40. </dependency>
  41. <!--velocity模板-->
  42. <dependency>
  43. <groupId>org.apache.velocity</groupId>
  44. <artifactId>velocity-engine-core</artifactId>
  45. <version>2.3</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-aop</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-amqp</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>fastjson</artifactId>
  71. <version>1.2.83</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-validation</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.google.protobuf</groupId>
  79. <artifactId>protobuf-java</artifactId>
  80. <version>3.23.4</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.aliyun.oss</groupId>
  84. <artifactId>aliyun-sdk-oss</artifactId>
  85. <version>3.15.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.ant</groupId>
  89. <artifactId>ant</artifactId>
  90. <version>1.8.2</version>
  91. </dependency>
  92. <!-- 钉钉sdk -->
  93. <dependency>
  94. <groupId>com.dingtalk.open</groupId>
  95. <artifactId>taobao-sdk-java-auto</artifactId>
  96. <version>1479188381469-20211020</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.codehaus.jackson</groupId>
  100. <artifactId>jackson-smile</artifactId>
  101. <version>1.9.12</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-fileupload</groupId>
  105. <artifactId>commons-fileupload</artifactId>
  106. <version>1.3</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.aliyun</groupId>
  110. <artifactId>ess20220222</artifactId>
  111. <version>1.0.5</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fdkankan</groupId>
  115. <artifactId>4dkankan-utils-redis</artifactId>
  116. <version>3.0.0-SNAPSHOT</version>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <finalName>zfb-modeling</finalName>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-surefire-plugin</artifactId>
  129. <configuration>
  130. <testFailureIgnore>true</testFailureIgnore>
  131. </configuration>
  132. </plugin>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-compiler-plugin</artifactId>
  136. <configuration>
  137. <source>8</source>
  138. <target>8</target>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>