pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. <version>${spring-boot-starter.version}</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-tomcat</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-undertow</artifactId>
  48. <version>${spring-boot-starter.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.mapstruct</groupId>
  52. <artifactId>mapstruct</artifactId>
  53. <version>${mapstruct.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mapstruct</groupId>
  57. <artifactId>mapstruct-processor</artifactId>
  58. <version>${mapstruct.version}</version>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <pluginManagement>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. <version>${spring-boot-maven-plugin.version}</version>
  68. <executions>
  69. <execution>
  70. <goals>
  71. <goal>repackage</goal>
  72. </goals>
  73. </execution>
  74. <execution>
  75. <id>build-info</id>
  76. <goals>
  77. <goal>build-info</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </pluginManagement>
  84. </build>
  85. </project>