pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <parent>
  5. <groupId>com.anjiplus.template.gaea</groupId>
  6. <artifactId>template-gaea</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <relativePath>../</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>report-core</artifactId>
  12. <name>aj-report</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.projectlombok</groupId>
  16. <artifactId>lombok</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.anji-plus</groupId>
  20. <artifactId>spring-boot-gaea</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-redis</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-context</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-cache</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.sf.ehcache</groupId>
  55. <artifactId>ehcache</artifactId>
  56. <version>2.10.6</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.anji-plus</groupId>
  60. <artifactId>spring-boot-starter-gaea-export</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.anji-plus</groupId>
  64. <artifactId>spring-boot-starter-gaea-log</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.flywaydb</groupId>
  68. <artifactId>flyway-core</artifactId>
  69. <version>5.2.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. <version>4.5.2</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpcore</artifactId>
  79. <version>4.4.5</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>druid</artifactId>
  84. <version>1.2.6</version>
  85. </dependency>
  86. <!--kudu impala驱动-->
  87. <dependency>
  88. <groupId>com.cloudera</groupId>
  89. <artifactId>ImpalaJDBC41</artifactId>
  90. <version>2.5.41</version>
  91. <scope>system</scope>
  92. <systemPath>${project.basedir}/src/main/resources/lib/ImpalaJDBC41.jar</systemPath>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.hive</groupId>
  96. <artifactId>hive-jdbc</artifactId>
  97. <version>1.2.1</version>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>org.eclipse.jetty.aggregate</groupId>
  101. <artifactId>jetty-all</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <resources>
  108. <resource>
  109. <directory>src/main/resources</directory>
  110. <filtering>true</filtering>
  111. </resource>
  112. </resources>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-maven-plugin</artifactId>
  117. <configuration>
  118. <includeSystemScope>true</includeSystemScope>
  119. </configuration>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-resources-plugin</artifactId>
  124. <configuration>
  125. <nonFilteredFileExtensions>
  126. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  127. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  128. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  129. </nonFilteredFileExtensions>
  130. </configuration>
  131. </plugin>
  132. </plugins>
  133. </build>
  134. </project>