pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>engine</artifactId>
  7. <groupId>com.purui.bigdata</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>engine-core</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <version>${lombok.version}</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.antlr</groupId>
  25. <artifactId>ST4</artifactId>
  26. <version>${st.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.testng</groupId>
  30. <artifactId>testng</artifactId>
  31. <version>${org.testng.version}</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.junit.jupiter</groupId>
  41. <artifactId>junit-jupiter</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mockito</groupId>
  46. <artifactId>mockito-inline</artifactId>
  47. <version>${mockito-inline.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.purui.bigdata</groupId>
  56. <artifactId>engine-api</artifactId>
  57. <version>${project.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>transmittable-thread-local</artifactId>
  62. <version>${transmittable.thread.local.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.aspectj</groupId>
  66. <artifactId>aspectjweaver</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mortbay.jetty</groupId>
  74. <artifactId>jetty-util</artifactId>
  75. <version>${jetty.util.version}</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.jayway.jsonpath</groupId>
  80. <artifactId>json-path</artifactId>
  81. <version>${jsonpath.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.calcite.avatica</groupId>
  85. <artifactId>avatica-core</artifactId>
  86. <version>${calcite.avatica.version}</version>
  87. <exclusions>
  88. <exclusion>
  89. <artifactId>protobuf-java</artifactId>
  90. <groupId>com.google.protobuf</groupId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.calcite</groupId>
  96. <artifactId>calcite-core</artifactId>
  97. <version>${calcite.version}</version>
  98. <exclusions>
  99. <exclusion>
  100. <artifactId>log4j</artifactId>
  101. <groupId>log4j</groupId>
  102. </exclusion>
  103. <exclusion>
  104. <artifactId>protobuf-java</artifactId>
  105. <groupId>com.google.protobuf</groupId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-compress</artifactId>
  112. <version>${commons.compress.version}</version>
  113. <scope>compile</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.duckdb</groupId>
  117. <artifactId>duckdb_jdbc</artifactId>
  118. <version>${duckdb_jdbc.version}</version>
  119. </dependency>
  120. </dependencies>
  121. </project>