| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.ignite</groupId> |
| <artifactId>ignite-parent-ext-internal</artifactId> |
| <version>1</version> |
| <relativePath>../../parent-internal/pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>ignite-azure-ext</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| <url>https://ignite.apache.org</url> |
| |
| <dependencyManagement> |
| <dependencies> |
| <!-- https://mvnrepository.com/artifact/org.springframework/spring-framework-bom --> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-framework-bom</artifactId> |
| <version>${spring53.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.ignite</groupId> |
| <artifactId>ignite-core</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.ignite</groupId> |
| <artifactId>ignite-core</artifactId> |
| <type>test-jar</type> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.jetbrains/annotations --> |
| <dependency> |
| <groupId>org.jetbrains</groupId> |
| <artifactId>annotations</artifactId> |
| <version>${jetbrains.annotations.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.azure</groupId> |
| <artifactId>azure-core-http-netty</artifactId> |
| <version>1.10.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.azure</groupId> |
| <artifactId>azure-core</artifactId> |
| <version>1.17.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.azure</groupId> |
| <artifactId>azure-storage-internal-avro</artifactId> |
| <version>12.0.5</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.azure</groupId> |
| <artifactId>azure-storage-blob</artifactId> |
| <version>12.13.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.azure</groupId> |
| <artifactId>azure-storage-common</artifactId> |
| <version>12.12.0</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-core</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-annotations</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.dataformat</groupId> |
| <artifactId>jackson-dataformat-xml</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.datatype</groupId> |
| <artifactId>jackson-datatype-jsr310</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-jaxb-annotations --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.module</groupId> |
| <artifactId>jackson-module-jaxb-annotations</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| <version>${log4j2.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| <version>${log4j2.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl --> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j-impl</artifactId> |
| <version>${log4j2.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-buffer --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-buffer</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-codec --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-codec --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-dns</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http2 --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-http2</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-http</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-socks --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-socks</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-common --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-common</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-handler --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-handler</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-handler-proxy --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-handler-proxy</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-resolver --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-resolver</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-resolver-dns --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-resolver-dns</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-resolver-dns-native-macos</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-tcnative-boringssl-static</artifactId> |
| <version>2.0.39.Final</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-dns --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-codec-dns</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-transport --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-transport</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-transport-native-epoll --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-transport-native-epoll</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-transport-native-kqueue --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-transport-native-kqueue</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-transport-native-unix-common --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-transport-native-unix-common</artifactId> |
| <version>${netty.version}</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.netty/netty-tcnative --> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-tcnative</artifactId> |
| <version>2.0.40.Final</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.reactivestreams</groupId> |
| <artifactId>reactive-streams</artifactId> |
| <version>1.0.3</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.projectreactor/reactor-core --> |
| <dependency> |
| <groupId>io.projectreactor</groupId> |
| <artifactId>reactor-core</artifactId> |
| <version>3.4.6</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/io.projectreactor.netty/reactor-netty-core --> |
| <dependency> |
| <groupId>io.projectreactor.netty</groupId> |
| <artifactId>reactor-netty-core</artifactId> |
| <version>1.0.7</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.projectreactor.netty</groupId> |
| <artifactId>reactor-netty-http</artifactId> |
| <version>1.0.7</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.woodstox/woodstox-core --> |
| <dependency> |
| <groupId>com.fasterxml.woodstox</groupId> |
| <artifactId>woodstox-core</artifactId> |
| <version>6.2.4</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.codehaus.woodstox/stax2-api --> |
| <dependency> |
| <groupId>org.codehaus.woodstox</groupId> |
| <artifactId>stax2-api</artifactId> |
| <version>4.2.1</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.reflections/reflections --> |
| <dependency> |
| <groupId>org.reflections</groupId> |
| <artifactId>reflections</artifactId> |
| <version>0.9.12</version> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>${slf4j.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-beans</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-context</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.build.directory}/libs</outputDirectory> |
| <includeScope>compile</includeScope> |
| <excludeArtifactIds>ignite-core,ignite-spring,ignite-shmem</excludeArtifactIds> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |