|
| 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>io.trino</groupId> |
| 7 | + <artifactId>trino-root</artifactId> |
| 8 | + <version>473-SNAPSHOT</version> |
| 9 | + <relativePath>../../pom.xml</relativePath> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>trino-lakehouse</artifactId> |
| 13 | + <packaging>trino-plugin</packaging> |
| 14 | + <description>Trino - Lakehouse connector</description> |
| 15 | + |
| 16 | + <dependencies> |
| 17 | + <dependency> |
| 18 | + <groupId>com.google.guava</groupId> |
| 19 | + <artifactId>guava</artifactId> |
| 20 | + </dependency> |
| 21 | + |
| 22 | + <dependency> |
| 23 | + <groupId>com.google.inject</groupId> |
| 24 | + <artifactId>guice</artifactId> |
| 25 | + </dependency> |
| 26 | + |
| 27 | + <dependency> |
| 28 | + <groupId>io.airlift</groupId> |
| 29 | + <artifactId>bootstrap</artifactId> |
| 30 | + </dependency> |
| 31 | + |
| 32 | + <dependency> |
| 33 | + <groupId>io.airlift</groupId> |
| 34 | + <artifactId>configuration</artifactId> |
| 35 | + </dependency> |
| 36 | + |
| 37 | + <dependency> |
| 38 | + <groupId>io.airlift</groupId> |
| 39 | + <artifactId>json</artifactId> |
| 40 | + </dependency> |
| 41 | + |
| 42 | + <dependency> |
| 43 | + <groupId>io.trino</groupId> |
| 44 | + <artifactId>trino-delta-lake</artifactId> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>io.trino</groupId> |
| 49 | + <artifactId>trino-filesystem-manager</artifactId> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <dependency> |
| 53 | + <groupId>io.trino</groupId> |
| 54 | + <artifactId>trino-hive</artifactId> |
| 55 | + </dependency> |
| 56 | + |
| 57 | + <dependency> |
| 58 | + <groupId>io.trino</groupId> |
| 59 | + <artifactId>trino-hudi</artifactId> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>io.trino</groupId> |
| 64 | + <artifactId>trino-iceberg</artifactId> |
| 65 | + </dependency> |
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>io.trino</groupId> |
| 69 | + <artifactId>trino-metastore</artifactId> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>io.trino</groupId> |
| 74 | + <artifactId>trino-plugin-toolkit</artifactId> |
| 75 | + </dependency> |
| 76 | + |
| 77 | + <dependency> |
| 78 | + <groupId>jakarta.validation</groupId> |
| 79 | + <artifactId>jakarta.validation-api</artifactId> |
| 80 | + </dependency> |
| 81 | + |
| 82 | + <dependency> |
| 83 | + <groupId>org.weakref</groupId> |
| 84 | + <artifactId>jmxutils</artifactId> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + <dependency> |
| 88 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 89 | + <artifactId>jackson-annotations</artifactId> |
| 90 | + <scope>provided</scope> |
| 91 | + </dependency> |
| 92 | + |
| 93 | + <dependency> |
| 94 | + <groupId>io.airlift</groupId> |
| 95 | + <artifactId>slice</artifactId> |
| 96 | + <scope>provided</scope> |
| 97 | + </dependency> |
| 98 | + |
| 99 | + <dependency> |
| 100 | + <groupId>io.opentelemetry</groupId> |
| 101 | + <artifactId>opentelemetry-api</artifactId> |
| 102 | + <scope>provided</scope> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>io.opentelemetry</groupId> |
| 107 | + <artifactId>opentelemetry-api-incubator</artifactId> |
| 108 | + <scope>provided</scope> |
| 109 | + </dependency> |
| 110 | + |
| 111 | + <dependency> |
| 112 | + <groupId>io.opentelemetry</groupId> |
| 113 | + <artifactId>opentelemetry-context</artifactId> |
| 114 | + <scope>provided</scope> |
| 115 | + </dependency> |
| 116 | + |
| 117 | + <dependency> |
| 118 | + <groupId>io.trino</groupId> |
| 119 | + <artifactId>trino-spi</artifactId> |
| 120 | + <scope>provided</scope> |
| 121 | + </dependency> |
| 122 | + |
| 123 | + <dependency> |
| 124 | + <groupId>org.openjdk.jol</groupId> |
| 125 | + <artifactId>jol-core</artifactId> |
| 126 | + <scope>provided</scope> |
| 127 | + </dependency> |
| 128 | + |
| 129 | + <dependency> |
| 130 | + <groupId>io.airlift</groupId> |
| 131 | + <artifactId>log-manager</artifactId> |
| 132 | + <scope>runtime</scope> |
| 133 | + </dependency> |
| 134 | + |
| 135 | + <dependency> |
| 136 | + <groupId>io.airlift</groupId> |
| 137 | + <artifactId>configuration-testing</artifactId> |
| 138 | + <scope>test</scope> |
| 139 | + </dependency> |
| 140 | + |
| 141 | + <dependency> |
| 142 | + <groupId>io.airlift</groupId> |
| 143 | + <artifactId>http-server</artifactId> |
| 144 | + <scope>test</scope> |
| 145 | + </dependency> |
| 146 | + |
| 147 | + <dependency> |
| 148 | + <groupId>io.airlift</groupId> |
| 149 | + <artifactId>junit-extensions</artifactId> |
| 150 | + <scope>test</scope> |
| 151 | + </dependency> |
| 152 | + |
| 153 | + <dependency> |
| 154 | + <groupId>io.airlift</groupId> |
| 155 | + <artifactId>testing</artifactId> |
| 156 | + <scope>test</scope> |
| 157 | + </dependency> |
| 158 | + |
| 159 | + <dependency> |
| 160 | + <groupId>io.minio</groupId> |
| 161 | + <artifactId>minio</artifactId> |
| 162 | + <scope>test</scope> |
| 163 | + </dependency> |
| 164 | + |
| 165 | + <dependency> |
| 166 | + <groupId>io.trino</groupId> |
| 167 | + <artifactId>trino-hive</artifactId> |
| 168 | + <type>test-jar</type> |
| 169 | + <scope>test</scope> |
| 170 | + </dependency> |
| 171 | + |
| 172 | + <dependency> |
| 173 | + <groupId>io.trino</groupId> |
| 174 | + <artifactId>trino-main</artifactId> |
| 175 | + <scope>test</scope> |
| 176 | + </dependency> |
| 177 | + |
| 178 | + <dependency> |
| 179 | + <groupId>io.trino</groupId> |
| 180 | + <artifactId>trino-main</artifactId> |
| 181 | + <type>test-jar</type> |
| 182 | + <scope>test</scope> |
| 183 | + </dependency> |
| 184 | + |
| 185 | + <dependency> |
| 186 | + <groupId>io.trino</groupId> |
| 187 | + <artifactId>trino-spi</artifactId> |
| 188 | + <type>test-jar</type> |
| 189 | + <scope>test</scope> |
| 190 | + </dependency> |
| 191 | + |
| 192 | + <dependency> |
| 193 | + <groupId>io.trino</groupId> |
| 194 | + <artifactId>trino-testing</artifactId> |
| 195 | + <scope>test</scope> |
| 196 | + </dependency> |
| 197 | + |
| 198 | + <dependency> |
| 199 | + <groupId>io.trino</groupId> |
| 200 | + <artifactId>trino-testing-containers</artifactId> |
| 201 | + <scope>test</scope> |
| 202 | + </dependency> |
| 203 | + |
| 204 | + <dependency> |
| 205 | + <groupId>io.trino</groupId> |
| 206 | + <artifactId>trino-testing-services</artifactId> |
| 207 | + <scope>test</scope> |
| 208 | + </dependency> |
| 209 | + |
| 210 | + <dependency> |
| 211 | + <groupId>io.trino</groupId> |
| 212 | + <artifactId>trino-tpcds</artifactId> |
| 213 | + <scope>test</scope> |
| 214 | + </dependency> |
| 215 | + |
| 216 | + <dependency> |
| 217 | + <groupId>io.trino</groupId> |
| 218 | + <artifactId>trino-tpch</artifactId> |
| 219 | + <scope>test</scope> |
| 220 | + </dependency> |
| 221 | + |
| 222 | + <dependency> |
| 223 | + <groupId>org.assertj</groupId> |
| 224 | + <artifactId>assertj-core</artifactId> |
| 225 | + <scope>test</scope> |
| 226 | + </dependency> |
| 227 | + |
| 228 | + <dependency> |
| 229 | + <groupId>org.junit.jupiter</groupId> |
| 230 | + <artifactId>junit-jupiter-api</artifactId> |
| 231 | + <scope>test</scope> |
| 232 | + </dependency> |
| 233 | + |
| 234 | + <dependency> |
| 235 | + <groupId>org.junit.jupiter</groupId> |
| 236 | + <artifactId>junit-jupiter-engine</artifactId> |
| 237 | + <scope>test</scope> |
| 238 | + </dependency> |
| 239 | + </dependencies> |
| 240 | + |
| 241 | + <build> |
| 242 | + <plugins> |
| 243 | + <plugin> |
| 244 | + <groupId>org.basepom.maven</groupId> |
| 245 | + <artifactId>duplicate-finder-maven-plugin</artifactId> |
| 246 | + <configuration> |
| 247 | + <ignoredResourcePatterns> |
| 248 | + <ignoredResourcePattern>iceberg-build.properties</ignoredResourcePattern> |
| 249 | + <ignoredResourcePattern>mozilla/public-suffix-list.txt</ignoredResourcePattern> |
| 250 | + <ignoredResourcePattern>mime.types</ignoredResourcePattern> |
| 251 | + </ignoredResourcePatterns> |
| 252 | + </configuration> |
| 253 | + </plugin> |
| 254 | + </plugins> |
| 255 | + </build> |
| 256 | +</project> |
0 commit comments