pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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-service</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mybatis.spring.boot</groupId>
  56. <artifactId>mybatis-spring-boot-starter</artifactId>
  57. <version>1.3.2</version>
  58. </dependency>
  59. <!-- 分页插件 -->
  60. <dependency>
  61. <groupId>com.github.pagehelper</groupId>
  62. <artifactId>pagehelper-spring-boot-starter</artifactId>
  63. <version>1.2.5</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>mysql</groupId>
  67. <artifactId>mysql-connector-java</artifactId>
  68. <version>${mysql.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>druid</artifactId>
  73. <version>${druid.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.springfox</groupId>
  77. <artifactId>springfox-swagger2</artifactId>
  78. <version>${swagger2.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>io.springfox</groupId>
  82. <artifactId>springfox-swagger-ui</artifactId>
  83. <version>${swagger2.version}</version>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <plugins>
  88. <!--<plugin>-->
  89. <!--<groupId>org.springframework.boot</groupId>-->
  90. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  91. <!--</plugin>-->
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.8.0</version>
  96. <configuration>
  97. <compilerVersion>1.8</compilerVersion>
  98. <source>1.8</source>
  99. <target>1.8</target>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. <resources>
  104. <resource>
  105. <directory>src/main/java</directory>
  106. <includes>
  107. <include>**/*.properties</include>
  108. <include>**/*.xml</include>
  109. <include>**/*.json</include>
  110. </includes>
  111. <filtering>false</filtering>
  112. </resource>
  113. <resource>
  114. <directory>src/main/resources</directory>
  115. <includes>
  116. <include>**/*.yml</include>
  117. </includes>
  118. </resource>
  119. </resources>
  120. <finalName>bigdata-web</finalName>
  121. </build>
  122. </project>