pom.xml 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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.5.8</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.yunzhi</groupId>
  12. <artifactId>roundabout</artifactId>
  13. <version>0.0.5</version>
  14. <name>roundabout</name>
  15. <description>华侨城-摩天轮</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <scope>runtime</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <!--mybatis-plus start-->
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-boot-starter</artifactId>
  43. <version>3.1.1</version>
  44. </dependency>
  45. <!--mybatis-plus end-->
  46. <!--fastjson start-->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. <version>1.2.56</version>
  51. </dependency>
  52. <!--fastjson end-->
  53. <!--excel start-->
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>easyexcel</artifactId>
  57. <version>2.0.4</version>
  58. </dependency>
  59. <!--excel end-->
  60. <!-- <dependency>-->
  61. <!-- <groupId>com.github.binarywang</groupId>-->
  62. <!-- <artifactId>weixin-java-mp</artifactId>-->
  63. <!-- <version>3.8.0</version>-->
  64. <!-- </dependency>-->
  65. <!--jwt start-->
  66. <dependency>
  67. <groupId>io.jsonwebtoken</groupId>
  68. <artifactId>jjwt-api</artifactId>
  69. <version>0.11.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>io.jsonwebtoken</groupId>
  73. <artifactId>jjwt-impl</artifactId>
  74. <version>0.11.2</version>
  75. <scope>runtime</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.jsonwebtoken</groupId>
  79. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  80. <version>0.11.2</version>
  81. <scope>runtime</scope>
  82. </dependency>
  83. <!--jwt end-->
  84. <!--swagger start-->
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-boot-starter</artifactId>
  88. <version>3.0.0</version>
  89. </dependency>
  90. <!--swagger end-->
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <configuration>
  98. <excludes>
  99. <exclude>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. </exclude>
  103. </excludes>
  104. <!-- <mainClass>com.yunzhi.drawlots.DrawlotsApplication</mainClass>-->
  105. <!-- <layout>ZIP</layout>-->
  106. <!-- <includes>-->
  107. <!-- <include>-->
  108. <!-- <groupId>nothing</groupId>-->
  109. <!-- <artifactId>nothing</artifactId>-->
  110. <!-- </include>-->
  111. <!-- </includes>-->
  112. </configuration>
  113. </plugin>
  114. <!-- <plugin>-->
  115. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  116. <!-- <artifactId>maven-dependency-plugin</artifactId>-->
  117. <!-- <executions>-->
  118. <!-- <execution>-->
  119. <!-- <goals>-->
  120. <!-- <goal>copy-dependencies</goal>-->
  121. <!-- </goals>-->
  122. <!-- <configuration>-->
  123. <!-- &lt;!&ndash; ${project.build.directory}是maven变量,内置的,表示target目录,如果不写,将在跟目录下创建/lib &ndash;&gt;-->
  124. <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
  125. <!-- &lt;!&ndash; excludeTransitive:是否不包含间接依赖包,比如我们依赖A,但是A又依赖了B,我们是否也要把B打进去 默认不打&ndash;&gt;-->
  126. <!-- <excludeTransitive>false</excludeTransitive>-->
  127. <!-- &lt;!&ndash; 复制的jar文件去掉版本信息 true去掉 false 不去&ndash;&gt;-->
  128. <!-- <stripVersion>false</stripVersion>-->
  129. <!-- </configuration>-->
  130. <!-- </execution>-->
  131. <!-- </executions>-->
  132. <!-- </plugin>-->
  133. </plugins>
  134. </build>
  135. </project>