|
| 1 | +<?xml version="1.0"?> |
| 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>com.facebook.presto</groupId> |
| 7 | + <artifactId>presto-root</artifactId> |
| 8 | + <version>0.292-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>presto-base-arrow-flight</artifactId> |
| 12 | + <name>presto-base-arrow-flight</name> |
| 13 | + <description>Presto - Base Arrow Flight Connector</description> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <air.main.basedir>${project.parent.basedir}</air.main.basedir> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>org.apache.arrow</groupId> |
| 22 | + <artifactId>arrow-memory-core</artifactId> |
| 23 | + <exclusions> |
| 24 | + <exclusion> |
| 25 | + <groupId>org.slf4j</groupId> |
| 26 | + <artifactId>slf4j-api</artifactId> |
| 27 | + </exclusion> |
| 28 | + </exclusions> |
| 29 | + </dependency> |
| 30 | + |
| 31 | + <dependency> |
| 32 | + <groupId>org.apache.arrow</groupId> |
| 33 | + <artifactId>arrow-memory-netty</artifactId> |
| 34 | + <scope>runtime</scope> |
| 35 | + <exclusions> |
| 36 | + <exclusion> |
| 37 | + <groupId>org.slf4j</groupId> |
| 38 | + <artifactId>slf4j-api</artifactId> |
| 39 | + </exclusion> |
| 40 | + </exclusions> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + <dependency> |
| 44 | + <groupId>org.apache.arrow</groupId> |
| 45 | + <artifactId>arrow-vector</artifactId> |
| 46 | + <exclusions> |
| 47 | + <exclusion> |
| 48 | + <groupId>org.slf4j</groupId> |
| 49 | + <artifactId>slf4j-api</artifactId> |
| 50 | + </exclusion> |
| 51 | + <!-- Excluding to resolve upper bound errors --> |
| 52 | + <exclusion> |
| 53 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 54 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 55 | + </exclusion> |
| 56 | + </exclusions> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <groupId>org.apache.arrow</groupId> |
| 61 | + <artifactId>flight-core</artifactId> |
| 62 | + <exclusions> |
| 63 | + <exclusion> |
| 64 | + <groupId>org.slf4j</groupId> |
| 65 | + <artifactId>slf4j-api</artifactId> |
| 66 | + </exclusion> |
| 67 | + </exclusions> |
| 68 | + </dependency> |
| 69 | + |
| 70 | + <dependency> |
| 71 | + <groupId>com.facebook.airlift</groupId> |
| 72 | + <artifactId>bootstrap</artifactId> |
| 73 | + </dependency> |
| 74 | + |
| 75 | + <dependency> |
| 76 | + <groupId>com.facebook.airlift</groupId> |
| 77 | + <artifactId>log</artifactId> |
| 78 | + </dependency> |
| 79 | + |
| 80 | + <dependency> |
| 81 | + <groupId>com.google.guava</groupId> |
| 82 | + <artifactId>guava</artifactId> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + <dependency> |
| 86 | + <groupId>javax.inject</groupId> |
| 87 | + <artifactId>javax.inject</artifactId> |
| 88 | + </dependency> |
| 89 | + |
| 90 | + <dependency> |
| 91 | + <groupId>com.facebook.presto</groupId> |
| 92 | + <artifactId>presto-spi</artifactId> |
| 93 | + </dependency> |
| 94 | + |
| 95 | + <dependency> |
| 96 | + <groupId>io.airlift</groupId> |
| 97 | + <artifactId>slice</artifactId> |
| 98 | + </dependency> |
| 99 | + |
| 100 | + <dependency> |
| 101 | + <groupId>com.facebook.airlift</groupId> |
| 102 | + <artifactId>log-manager</artifactId> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 107 | + <artifactId>jackson-annotations</artifactId> |
| 108 | + </dependency> |
| 109 | + |
| 110 | + <dependency> |
| 111 | + <groupId>com.facebook.presto</groupId> |
| 112 | + <artifactId>presto-common</artifactId> |
| 113 | + </dependency> |
| 114 | + |
| 115 | + <dependency> |
| 116 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 117 | + <artifactId>jackson-databind</artifactId> |
| 118 | + </dependency> |
| 119 | + |
| 120 | + <dependency> |
| 121 | + <groupId>com.google.code.findbugs</groupId> |
| 122 | + <artifactId>jsr305</artifactId> |
| 123 | + <optional>true</optional> |
| 124 | + </dependency> |
| 125 | + |
| 126 | + <dependency> |
| 127 | + <groupId>com.google.inject</groupId> |
| 128 | + <artifactId>guice</artifactId> |
| 129 | + </dependency> |
| 130 | + |
| 131 | + <dependency> |
| 132 | + <groupId>com.facebook.airlift</groupId> |
| 133 | + <artifactId>configuration</artifactId> |
| 134 | + </dependency> |
| 135 | + |
| 136 | + <dependency> |
| 137 | + <groupId>joda-time</groupId> |
| 138 | + <artifactId>joda-time</artifactId> |
| 139 | + </dependency> |
| 140 | + |
| 141 | + <dependency> |
| 142 | + <groupId>org.jdbi</groupId> |
| 143 | + <artifactId>jdbi3-core</artifactId> |
| 144 | + </dependency> |
| 145 | + |
| 146 | + <!-- for testing --> |
| 147 | + <dependency> |
| 148 | + <groupId>org.testng</groupId> |
| 149 | + <artifactId>testng</artifactId> |
| 150 | + <scope>test</scope> |
| 151 | + </dependency> |
| 152 | + |
| 153 | + <dependency> |
| 154 | + <groupId>io.airlift.tpch</groupId> |
| 155 | + <artifactId>tpch</artifactId> |
| 156 | + <scope>test</scope> |
| 157 | + </dependency> |
| 158 | + |
| 159 | + <dependency> |
| 160 | + <groupId>com.facebook.presto</groupId> |
| 161 | + <artifactId>presto-tpch</artifactId> |
| 162 | + <scope>test</scope> |
| 163 | + </dependency> |
| 164 | + |
| 165 | + <dependency> |
| 166 | + <groupId>com.facebook.airlift</groupId> |
| 167 | + <artifactId>json</artifactId> |
| 168 | + <scope>test</scope> |
| 169 | + </dependency> |
| 170 | + |
| 171 | + <dependency> |
| 172 | + <groupId>com.facebook.presto</groupId> |
| 173 | + <artifactId>presto-testng-services</artifactId> |
| 174 | + <scope>test</scope> |
| 175 | + </dependency> |
| 176 | + |
| 177 | + <dependency> |
| 178 | + <groupId>com.facebook.airlift</groupId> |
| 179 | + <artifactId>testing</artifactId> |
| 180 | + <scope>test</scope> |
| 181 | + </dependency> |
| 182 | + |
| 183 | + <dependency> |
| 184 | + <groupId>com.facebook.presto</groupId> |
| 185 | + <artifactId>presto-main</artifactId> |
| 186 | + <scope>test</scope> |
| 187 | + </dependency> |
| 188 | + |
| 189 | + <dependency> |
| 190 | + <groupId>com.facebook.presto</groupId> |
| 191 | + <artifactId>presto-tests</artifactId> |
| 192 | + <scope>test</scope> |
| 193 | + </dependency> |
| 194 | + |
| 195 | + <dependency> |
| 196 | + <groupId>com.h2database</groupId> |
| 197 | + <artifactId>h2</artifactId> |
| 198 | + <scope>test</scope> |
| 199 | + </dependency> |
| 200 | + |
| 201 | + <dependency> |
| 202 | + <groupId>org.apache.arrow</groupId> |
| 203 | + <artifactId>arrow-jdbc</artifactId> |
| 204 | + <version>${dep.arrow.version}</version> |
| 205 | + <scope>test</scope> |
| 206 | + <exclusions> |
| 207 | + <exclusion> |
| 208 | + <groupId>org.slf4j</groupId> |
| 209 | + <artifactId>slf4j-api</artifactId> |
| 210 | + </exclusion> |
| 211 | + </exclusions> |
| 212 | + </dependency> |
| 213 | + </dependencies> |
| 214 | + |
| 215 | + <build> |
| 216 | + <plugins> |
| 217 | + <plugin> |
| 218 | + <groupId>org.apache.maven.plugins</groupId> |
| 219 | + <artifactId>maven-surefire-plugin</artifactId> |
| 220 | + <configuration> |
| 221 | + <argLine>-Xss10M</argLine> |
| 222 | + </configuration> |
| 223 | + </plugin> |
| 224 | + <plugin> |
| 225 | + <groupId>org.apache.maven.plugins</groupId> |
| 226 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 227 | + </plugin> |
| 228 | + <plugin> |
| 229 | + <groupId>org.apache.maven.plugins</groupId> |
| 230 | + <artifactId>maven-dependency-plugin</artifactId> |
| 231 | + </plugin> |
| 232 | + <plugin> |
| 233 | + <groupId>org.basepom.maven</groupId> |
| 234 | + <artifactId>duplicate-finder-maven-plugin</artifactId> |
| 235 | + <version>1.2.1</version> |
| 236 | + <configuration> |
| 237 | + <ignoredClassPatterns> |
| 238 | + <ignoredClassPattern>module-info</ignoredClassPattern> |
| 239 | + <ignoredClassPattern>META-INF.versions.9.module-info</ignoredClassPattern> |
| 240 | + </ignoredClassPatterns> |
| 241 | + <ignoredResourcePatterns> |
| 242 | + <ignoredResourcePattern>arrow-git.properties</ignoredResourcePattern> |
| 243 | + <ignoredResourcePattern>about.html</ignoredResourcePattern> |
| 244 | + </ignoredResourcePatterns> |
| 245 | + </configuration> |
| 246 | + <executions> |
| 247 | + <execution> |
| 248 | + <goals> |
| 249 | + <goal>check</goal> |
| 250 | + </goals> |
| 251 | + </execution> |
| 252 | + </executions> |
| 253 | + </plugin> |
| 254 | + </plugins> |
| 255 | + </build> |
| 256 | +</project> |
0 commit comments