pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-swagger</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. <springfox-boot-starter.version>3.0.0</springfox-boot-starter.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>io.springfox</groupId>
  24. <artifactId>springfox-boot-starter</artifactId>
  25. <version>${springfox-boot-starter.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.wei</groupId>
  29. <artifactId>base-springframework-core</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <pluginManagement>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. <version>${spring-boot-maven-plugin.version}</version>
  40. <executions>
  41. <execution>
  42. <goals>
  43. <goal>repackage</goal>
  44. </goals>
  45. </execution>
  46. <execution>
  47. <id>build-info</id>
  48. <goals>
  49. <goal>build-info</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </pluginManagement>
  56. </build>
  57. </project>