pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. <swagger2.version>2.7.0</swagger2.version>
  21. <slf4j.version>1.7.2</slf4j.version>
  22. <commons-lang3.version>3.1</commons-lang3.version>
  23. <commons-io.version>2.4</commons-io.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.lantone.qc</groupId>
  28. <artifactId>public</artifactId>
  29. <version>1.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lantone.qc</groupId>
  33. <artifactId>security</artifactId>
  34. <version>1.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.lantone.qc</groupId>
  38. <artifactId>nlp</artifactId>
  39. <version>1.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.lantone.qc</groupId>
  43. <artifactId>trans</artifactId>
  44. <version>1.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <!-- LOGGING begin -->
  51. <!-- 代码直接调用commons-logging会被桥接到slf4j -->
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>jcl-over-slf4j</artifactId>
  55. <version>${slf4j.version}</version>
  56. </dependency>
  57. <!-- 代码直接调用java.util.logging会被桥接到slf4j -->
  58. <dependency>
  59. <groupId>org.slf4j</groupId>
  60. <artifactId>jul-to-slf4j</artifactId>
  61. <version>${slf4j.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger2</artifactId>
  66. <version>${swagger2.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.springfox</groupId>
  70. <artifactId>springfox-swagger-ui</artifactId>
  71. <version>${swagger2.version}</version>
  72. </dependency>
  73. <!-- 开启feign-->
  74. <dependency>
  75. <groupId>org.springframework.cloud</groupId>
  76. <artifactId>spring-cloud-starter-openfeign</artifactId>
  77. <version>2.1.0.RELEASE</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-redis</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.sourceforge.jexcelapi</groupId>
  85. <artifactId>jxl</artifactId>
  86. <version>2.6.10</version>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. </plugin>
  95. </plugins>
  96. <resources>
  97. <resource>
  98. <directory>src/main/java</directory>
  99. <includes>
  100. <include>**/*.properties</include>
  101. <include>**/*.xml</include>
  102. <include>**/*.json</include>
  103. </includes>
  104. <filtering>false</filtering>
  105. </resource>
  106. <resource>
  107. <directory>src/main/resources</directory>
  108. <includes>
  109. <include>**/*.*</include>
  110. </includes>
  111. </resource>
  112. </resources>
  113. <finalName>qc-web</finalName>
  114. </build>
  115. </project>