|
| 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 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>net.snowflake</groupId> |
| 7 | + <artifactId>snowflake-jdbc-thin</artifactId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + <name>Snowflake JDBC Driver Thin</name> |
| 11 | + <description>Snowflake JDBC Driver Thin</description> |
| 12 | + <url>https://www.snowflake.net/</url> |
| 13 | + |
| 14 | + <licenses> |
| 15 | + <license> |
| 16 | + <name>The Apache Software License, Version 2.0</name> |
| 17 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 18 | + </license> |
| 19 | + </licenses> |
| 20 | + |
| 21 | + <developers> |
| 22 | + <developer> |
| 23 | + <name>Snowflake Support Team</name> |
| 24 | + <email>snowflake-java@snowflake.net</email> |
| 25 | + <organization>Snowflake Computing</organization> |
| 26 | + <organizationUrl>https://www.snowflake.net</organizationUrl> |
| 27 | + </developer> |
| 28 | + </developers> |
| 29 | + |
| 30 | + <scm> |
| 31 | + <connection>scm:git:git://github.com/snowflakedb/snowflake-jdbc</connection> |
| 32 | + <url>http://github.com/snowflakedb/snowflake-jdbc/tree/master</url> |
| 33 | + </scm> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <apache.httpclient.version>4.5.14</apache.httpclient.version> |
| 37 | + <apache.httpcore.version>4.4.16</apache.httpcore.version> |
| 38 | + <awssdk.version>1.12.501</awssdk.version> |
| 39 | + <azure.storage.version>5.0.0</azure.storage.version> |
| 40 | + <bouncycastle.version>1.74</bouncycastle.version> |
| 41 | + <commons.codec.version>1.15</commons.codec.version> |
| 42 | + <commons.io.version>2.11.0</commons.io.version> |
| 43 | + <commons.logging.version>1.2</commons.logging.version> |
| 44 | + <google.cloud.core.version>2.21.0</google.cloud.core.version> |
| 45 | + <google.cloud.storage.version>2.22.6</google.cloud.storage.version> |
| 46 | + <google.flatbuffers.version>1.12.0</google.flatbuffers.version> |
| 47 | + <google.gax.version>2.31.0</google.gax.version> |
| 48 | + <google.guava.version>32.1.1-jre</google.guava.version> |
| 49 | + <google.http.client.version>1.43.3</google.http.client.version> |
| 50 | + <google.jsr305.version>3.0.2</google.jsr305.version> |
| 51 | + <google.protobuf.java.version>3.23.3</google.protobuf.java.version> |
| 52 | + <grpc.version>1.60.0</grpc.version> |
| 53 | + <jackson.version>2.15.3</jackson.version> |
| 54 | + <javax.servlet.version>3.1.0</javax.servlet.version> |
| 55 | + <jna.version>5.13.0</jna.version> |
| 56 | + <joda.time.version>2.8.1</joda.time.version> |
| 57 | + <json.smart.version>2.4.9</json.smart.version> |
| 58 | + <jsoup.version>1.15.3</jsoup.version> |
| 59 | + <metrics.version>2.2.0</metrics.version> |
| 60 | + <netty.version>4.1.100.Final</netty.version> |
| 61 | + <nimbusds.version>9.21</nimbusds.version> |
| 62 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 63 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 64 | + <slf4j.version>2.0.6</slf4j.version> |
| 65 | + </properties> |
| 66 | + |
| 67 | + <dependencyManagement> |
| 68 | + <dependencies> |
| 69 | + <dependency> |
| 70 | + <groupId>com.amazonaws</groupId> |
| 71 | + <artifactId>aws-java-sdk-bom</artifactId> |
| 72 | + <version>${awssdk.version}</version> |
| 73 | + <type>pom</type> |
| 74 | + <scope>import</scope> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>com.fasterxml.jackson</groupId> |
| 78 | + <artifactId>jackson-bom</artifactId> |
| 79 | + <version>${jackson.version}</version> |
| 80 | + <type>pom</type> |
| 81 | + <scope>import</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>com.google.http-client</groupId> |
| 85 | + <artifactId>google-http-client-bom</artifactId> |
| 86 | + <version>${google.http.client.version}</version> |
| 87 | + <type>pom</type> |
| 88 | + <scope>import</scope> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>com.google.protobuf</groupId> |
| 92 | + <artifactId>protobuf-bom</artifactId> |
| 93 | + <version>${google.protobuf.java.version}</version> |
| 94 | + <type>pom</type> |
| 95 | + <scope>import</scope> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>io.grpc</groupId> |
| 99 | + <artifactId>grpc-bom</artifactId> |
| 100 | + <version>${grpc.version}</version> |
| 101 | + <type>pom</type> |
| 102 | + <scope>import</scope> |
| 103 | + </dependency> |
| 104 | + </dependencies> |
| 105 | + </dependencyManagement> |
| 106 | + |
| 107 | + <dependencies> |
| 108 | + <dependency> |
| 109 | + <groupId>org.bouncycastle</groupId> |
| 110 | + <artifactId>bcpkix-jdk18on</artifactId> |
| 111 | + <version>${bouncycastle.version}</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.bouncycastle</groupId> |
| 115 | + <artifactId>bcprov-jdk18on</artifactId> |
| 116 | + <version>${bouncycastle.version}</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>com.amazonaws</groupId> |
| 120 | + <artifactId>aws-java-sdk-core</artifactId> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>com.amazonaws</groupId> |
| 124 | + <artifactId>aws-java-sdk-kms</artifactId> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>com.amazonaws</groupId> |
| 128 | + <artifactId>aws-java-sdk-s3</artifactId> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 132 | + <artifactId>jackson-annotations</artifactId> |
| 133 | + </dependency> |
| 134 | + <dependency> |
| 135 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 136 | + <artifactId>jackson-core</artifactId> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 140 | + <artifactId>jackson-databind</artifactId> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>com.google.api</groupId> |
| 144 | + <artifactId>gax</artifactId> |
| 145 | + <version>${google.gax.version}</version> |
| 146 | + </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>com.google.cloud</groupId> |
| 149 | + <artifactId>google-cloud-core</artifactId> |
| 150 | + <version>${google.cloud.core.version}</version> |
| 151 | + </dependency> |
| 152 | + <dependency> |
| 153 | + <groupId>com.google.cloud</groupId> |
| 154 | + <artifactId>google-cloud-storage</artifactId> |
| 155 | + <version>${google.cloud.storage.version}</version> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>com.google.code.findbugs</groupId> |
| 159 | + <artifactId>jsr305</artifactId> |
| 160 | + <version>${google.jsr305.version}</version> |
| 161 | + </dependency> |
| 162 | + <dependency> |
| 163 | + <groupId>com.google.guava</groupId> |
| 164 | + <artifactId>guava</artifactId> |
| 165 | + <version>${google.guava.version}</version> |
| 166 | + </dependency> |
| 167 | + <dependency> |
| 168 | + <groupId>com.google.http-client</groupId> |
| 169 | + <artifactId>google-http-client</artifactId> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>com.microsoft.azure</groupId> |
| 173 | + <artifactId>azure-storage</artifactId> |
| 174 | + <version>${azure.storage.version}</version> |
| 175 | + </dependency> |
| 176 | + <dependency> |
| 177 | + <groupId>com.nimbusds</groupId> |
| 178 | + <artifactId>nimbus-jose-jwt</artifactId> |
| 179 | + <version>${nimbusds.version}</version> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>com.yammer.metrics</groupId> |
| 183 | + <artifactId>metrics-core</artifactId> |
| 184 | + <version>${metrics.version}</version> |
| 185 | + </dependency> |
| 186 | + <dependency> |
| 187 | + <groupId>com.yammer.metrics</groupId> |
| 188 | + <artifactId>metrics-servlet</artifactId> |
| 189 | + <version>${metrics.version}</version> |
| 190 | + </dependency> |
| 191 | + <dependency> |
| 192 | + <groupId>commons-codec</groupId> |
| 193 | + <artifactId>commons-codec</artifactId> |
| 194 | + <version>${commons.codec.version}</version> |
| 195 | + </dependency> |
| 196 | + <dependency> |
| 197 | + <groupId>commons-io</groupId> |
| 198 | + <artifactId>commons-io</artifactId> |
| 199 | + <version>${commons.io.version}</version> |
| 200 | + </dependency> |
| 201 | + <dependency> |
| 202 | + <groupId>commons-logging</groupId> |
| 203 | + <artifactId>commons-logging</artifactId> |
| 204 | + <version>${commons.logging.version}</version> |
| 205 | + </dependency> |
| 206 | + <dependency> |
| 207 | + <groupId>javax.servlet</groupId> |
| 208 | + <artifactId>javax.servlet-api</artifactId> |
| 209 | + <version>${javax.servlet.version}</version> |
| 210 | + </dependency> |
| 211 | + <dependency> |
| 212 | + <groupId>joda-time</groupId> |
| 213 | + <artifactId>joda-time</artifactId> |
| 214 | + <version>${joda.time.version}</version> |
| 215 | + </dependency> |
| 216 | + <dependency> |
| 217 | + <groupId>net.java.dev.jna</groupId> |
| 218 | + <artifactId>jna</artifactId> |
| 219 | + <version>${jna.version}</version> |
| 220 | + <optional>true</optional> |
| 221 | + </dependency> |
| 222 | + <dependency> |
| 223 | + <groupId>net.java.dev.jna</groupId> |
| 224 | + <artifactId>jna-platform</artifactId> |
| 225 | + <version>${jna.version}</version> |
| 226 | + <optional>true</optional> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>net.minidev</groupId> |
| 230 | + <artifactId>json-smart</artifactId> |
| 231 | + <version>${json.smart.version}</version> |
| 232 | + </dependency> |
| 233 | + <dependency> |
| 234 | + <groupId>org.apache.httpcomponents</groupId> |
| 235 | + <artifactId>httpclient</artifactId> |
| 236 | + <version>${apache.httpclient.version}</version> |
| 237 | + </dependency> |
| 238 | + <dependency> |
| 239 | + <groupId>org.apache.httpcomponents</groupId> |
| 240 | + <artifactId>httpcore</artifactId> |
| 241 | + <version>${apache.httpcore.version}</version> |
| 242 | + </dependency> |
| 243 | + <dependency> |
| 244 | + <groupId>org.jsoup</groupId> |
| 245 | + <artifactId>jsoup</artifactId> |
| 246 | + <version>${jsoup.version}</version> |
| 247 | + </dependency> |
| 248 | + <dependency> |
| 249 | + <groupId>org.slf4j</groupId> |
| 250 | + <artifactId>slf4j-api</artifactId> |
| 251 | + <version>${slf4j.version}</version> |
| 252 | + <scope>provided</scope> |
| 253 | + </dependency> |
| 254 | + <dependency> |
| 255 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 256 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 257 | + <scope>runtime</scope> |
| 258 | + </dependency> |
| 259 | + <dependency> |
| 260 | + <!-- used by apache arrow --> |
| 261 | + <groupId>com.google.flatbuffers</groupId> |
| 262 | + <artifactId>flatbuffers-java</artifactId> |
| 263 | + <version>${google.flatbuffers.version}</version> |
| 264 | + </dependency> |
| 265 | + </dependencies> |
| 266 | + |
| 267 | +</project> |
0 commit comments