pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.wei</groupId>
  8. <artifactId>base-springframework</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>base-springframework-core</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <java.version>1.8</java.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <spring-boot-maven-plugin.version>2.3.1.RELEASE</spring-boot-maven-plugin.version>
  20. <springfox-boot-starter.version>3.0.0</springfox-boot-starter.version>
  21. <mapstruct.version>1.3.1.Final</mapstruct.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.wei</groupId>
  26. <artifactId>base-springframework-constant</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.wei</groupId>
  31. <artifactId>base-springframework-util</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.springfox</groupId>
  36. <artifactId>springfox-boot-starter</artifactId>
  37. <version>${springfox-boot-starter.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. <version>${spring-boot-starter.version}</version>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-tomcat</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-undertow</artifactId>
  53. <version>${spring-boot-starter.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mapstruct</groupId>
  57. <artifactId>mapstruct</artifactId>
  58. <version>${mapstruct.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.mapstruct</groupId>
  62. <artifactId>mapstruct-processor</artifactId>
  63. <version>${mapstruct.version}</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <pluginManagement>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <version>${spring-boot-maven-plugin.version}</version>
  73. <executions>
  74. <execution>
  75. <goals>
  76. <goal>repackage</goal>
  77. </goals>
  78. </execution>
  79. <execution>
  80. <id>build-info</id>
  81. <goals>
  82. <goal>build-info</goal>
  83. </goals>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. </plugins>
  88. </pluginManagement>
  89. </build>
  90. </project>