pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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>com.alibaba</groupId>
  73. <artifactId>druid</artifactId>
  74. <version>1.2.6</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. <version>4.5.10</version>
  80. </dependency>
  81. <!--
  82. 第三方驱动放到lib目录下
  83. oracle
  84. <dependency>
  85. <groupId>com.oracle.database.jdbc</groupId>
  86. <artifactId>ojdbc6</artifactId>
  87. <version>11.2.0.4</version>
  88. </dependency>
  89. kudu impala驱动
  90. <dependency>
  91. <groupId>com.cloudera</groupId>
  92. <artifactId>ImpalaJDBC41</artifactId>
  93. <version>2.5.41</version>
  94. <scope>system</scope>
  95. <systemPath>${project.basedir}/src/main/resources/lib/ImpalaJDBC41.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.hive</groupId>
  99. <artifactId>hive-jdbc</artifactId>
  100. <version>1.2.1</version>
  101. <exclusions>
  102. <exclusion>
  103. <groupId>org.eclipse.jetty.aggregate</groupId>
  104. <artifactId>jetty-all</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>-->
  108. </dependencies>
  109. <build>
  110. <resources>
  111. <resource>
  112. <directory>src/main/resources</directory>
  113. <filtering>true</filtering>
  114. </resource>
  115. </resources>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. <configuration>
  121. <includeSystemScope>true</includeSystemScope>
  122. </configuration>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-resources-plugin</artifactId>
  127. <configuration>
  128. <nonFilteredFileExtensions>
  129. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  130. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  131. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  132. </nonFilteredFileExtensions>
  133. </configuration>
  134. </plugin>
  135. <plugin>
  136. <artifactId>maven-assembly-plugin</artifactId>
  137. <configuration>
  138. <descriptors>
  139. <descriptor>src/main/assembly/assembly.xml</descriptor>
  140. </descriptors>
  141. </configuration>
  142. <executions>
  143. <execution>
  144. <id>make-assembly</id>
  145. <phase>package</phase>
  146. <goals>
  147. <goal>single</goal>
  148. </goals>
  149. </execution>
  150. </executions>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </project>