pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.1.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lantone.qc.kernel</groupId>
  12. <artifactId>kernel</artifactId>
  13. <version>0.0.1</version>
  14. <name>kernel</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <druid.version>1.0.23</druid.version>
  21. <swagger2.version>2.7.0</swagger2.version>
  22. <commons-lang3.version>3.1</commons-lang3.version>
  23. <commons-io.version>2.4</commons-io.version>
  24. <slf4j.version>1.7.2</slf4j.version>
  25. <logback.version>1.1.2</logback.version>
  26. <standard.version>1.1.2</standard.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.lantone.qc</groupId>
  31. <artifactId>public</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.lantone.qc</groupId>
  36. <artifactId>security</artifactId>
  37. <version>1.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-logging</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.springfox</groupId>
  53. <artifactId>springfox-swagger2</artifactId>
  54. <version>${swagger2.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-swagger-ui</artifactId>
  59. <version>${swagger2.version}</version>
  60. </dependency>
  61. <!-- 开启feign-->
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-openfeign</artifactId>
  65. <version>2.1.0.RELEASE</version>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. </plugin>
  74. </plugins>
  75. <resources>
  76. <resource>
  77. <directory>src/main/java</directory>
  78. <includes>
  79. <include>**/*.properties</include>
  80. <include>**/*.xml</include>
  81. <include>**/*.json</include>
  82. </includes>
  83. <filtering>false</filtering>
  84. </resource>
  85. <resource>
  86. <directory>src/main/resources</directory>
  87. <includes>
  88. <include>**/*.*</include>
  89. </includes>
  90. </resource>
  91. </resources>
  92. <finalName>qc-web</finalName>
  93. </build>
  94. </project>