pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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>aj-report</artifactId>
  12. <name>aj-report</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.anjiplus.template.gaea</groupId>
  16. <artifactId>template-gaea-common</artifactId>
  17. <!-- <exclusions>-->
  18. <!-- <exclusion>-->
  19. <!-- <groupId>com.alibaba.cloud</groupId>-->
  20. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
  21. <!-- </exclusion>-->
  22. <!-- <exclusion>-->
  23. <!-- <groupId>com.alibaba.cloud</groupId>-->
  24. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  25. <!-- </exclusion>-->
  26. <!-- </exclusions>-->
  27. </dependency>
  28. <dependency>
  29. <groupId>com.anjiplus.template.gaea</groupId>
  30. <artifactId>template-gaea-generator</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>mybatis-plus-boot-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <!-- <dependency>-->
  46. <!-- <groupId>com.alibaba.cloud</groupId>-->
  47. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  48. <!-- </dependency>-->
  49. <!-- <dependency>-->
  50. <!-- <groupId>com.alibaba.cloud</groupId>-->
  51. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
  52. <!-- </dependency>-->
  53. <dependency>
  54. <groupId>com.anji-plus</groupId>
  55. <artifactId>spring-boot-starter-gaea-export</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.anji-plus</groupId>
  59. <artifactId>spring-boot-starter-gaea-log</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>druid</artifactId>
  64. <version>1.1.22</version>
  65. </dependency>
  66. <!--kudu impala驱动-->
  67. <dependency>
  68. <groupId>owinfo</groupId>
  69. <artifactId>impalajdbc41</artifactId>
  70. <version>1.0.0</version>
  71. <scope>system</scope>
  72. <systemPath>${project.basedir}/src/main/resources/lib/ImpalaJDBC41.jar</systemPath>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.hive</groupId>
  76. <artifactId>hive-jdbc</artifactId>
  77. <version>1.2.1</version>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.eclipse.jetty.aggregate</groupId>
  81. <artifactId>jetty-all</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <resources>
  88. <resource>
  89. <directory>src/main/resources</directory>
  90. <filtering>true</filtering>
  91. </resource>
  92. </resources>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <configuration>
  98. <includeSystemScope>true</includeSystemScope>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>