pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 http://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.1.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>org.diagbot</groupId>
  12. <artifactId>bigdata-web</artifactId>
  13. <version>0.0.1</version>
  14. <name>bigdata-web</name>
  15. <description>bigdata push for diagbot</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. <mybatis.version>1.1.1</mybatis.version>
  22. <mysql.version>5.1.38</mysql.version>
  23. <swagger2.version>2.7.0</swagger2.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.diagbot</groupId>
  28. <artifactId>public</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.diagbot</groupId>
  33. <artifactId>algorithm</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.diagbot</groupId>
  38. <artifactId>nlp</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.diagbot</groupId>
  43. <artifactId>common-push</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.diagbot</groupId>
  48. <artifactId>common-service</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.mybatis.spring.boot</groupId>
  61. <artifactId>mybatis-spring-boot-starter</artifactId>
  62. <version>1.3.2</version>
  63. </dependency>
  64. <!-- 分页插件 -->
  65. <dependency>
  66. <groupId>com.github.pagehelper</groupId>
  67. <artifactId>pagehelper-spring-boot-starter</artifactId>
  68. <version>1.2.5</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>net.sourceforge.jexcelapi</groupId>
  72. <artifactId>jxl</artifactId>
  73. <version>2.6.12</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <version>${mysql.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>druid</artifactId>
  83. <version>${druid.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-swagger2</artifactId>
  88. <version>${swagger2.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.springfox</groupId>
  92. <artifactId>springfox-swagger-ui</artifactId>
  93. <version>${swagger2.version}</version>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <!--<plugin>-->
  99. <!--<groupId>org.springframework.boot</groupId>-->
  100. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  101. <!--</plugin>-->
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-compiler-plugin</artifactId>
  105. <version>3.8.0</version>
  106. <configuration>
  107. <compilerVersion>1.8</compilerVersion>
  108. <source>1.8</source>
  109. <target>1.8</target>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. <resources>
  114. <resource>
  115. <directory>src/main/java</directory>
  116. <includes>
  117. <include>**/*.properties</include>
  118. <include>**/*.xml</include>
  119. <include>**/*.json</include>
  120. </includes>
  121. <filtering>false</filtering>
  122. </resource>
  123. <resource>
  124. <directory>src/main/resources</directory>
  125. <includes>
  126. <include>**/*.*</include>
  127. </includes>
  128. </resource>
  129. </resources>
  130. <finalName>bigdata-web</finalName>
  131. </build>
  132. </project>