You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2021/04/16 16:18:40 UTC

[ignite] 02/02: Amendments

This is an automated email from the ASF dual-hosted git repository.

ilyak pushed a commit to branch ignite-14346
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 020eb587ad76414fcfeb8f7e233b5af453628bfe
Author: Ilya Kasnacheev <il...@gmail.com>
AuthorDate: Fri Apr 16 19:17:41 2021 +0300

    Amendments
---
 docs/_docs/setup.adoc    |  2 +-
 modules/azure/README.txt |  2 +-
 modules/azure/pom.xml    | 61 ++++++++++++++++++++++++++++++------------------
 3 files changed, 40 insertions(+), 25 deletions(-)

diff --git a/docs/_docs/setup.adoc b/docs/_docs/setup.adoc
index 44dfda6..754f4e7 100644
--- a/docs/_docs/setup.adoc
+++ b/docs/_docs/setup.adoc
@@ -203,7 +203,7 @@ adding @Gridify annotation to it.
 
 |ignite-aws |Cluster discovery on AWS S3. Refer to link:clustering/discovery-in-the-cloud#amazon-s3-ip-finder[Amazon S3 IP Finder] for details.
 
-|ignite-azure| Ignite Azure provides Azure Blob Storagebased implementations of IP finder for TCP discovery.
+|ignite-azure| Ignite Azure provides Azure Blob Storage-based implementation of IP finder for TCP discovery.
 
 |ignite-cassandra-serializers | The Ignite Cassandra Serializers module provides additional serializers to store objects as BLOBs in Cassandra. The module could be used as in conjunction with the Ignite Cassandra Store module.
 
diff --git a/modules/azure/README.txt b/modules/azure/README.txt
index 6d7df7d..33501f0 100644
--- a/modules/azure/README.txt
+++ b/modules/azure/README.txt
@@ -1,7 +1,7 @@
 Apache Ignite Azure Module
 ------------------------
 
-Apache Ignite Azure module provides Azure Blob Storage based implementations of IP finder for TCP discovery.
+Apache Ignite Azure module provides Azure Blob Storage based implementation of IP finder for TCP discovery.
 
 To enable Azure module when starting a standalone node, move 'optional/ignite-azure' folder to
 'libs' folder before running 'ignite.{sh|bat}' script. The content of the module folder will
diff --git a/modules/azure/pom.xml b/modules/azure/pom.xml
index 7e221eb..c3951b3 100644
--- a/modules/azure/pom.xml
+++ b/modules/azure/pom.xml
@@ -67,7 +67,7 @@
         <dependency>
             <groupId>org.jetbrains</groupId>
             <artifactId>annotations</artifactId>
-            <version>16.0.3</version>
+            <version>${jetbrains.annotations.version}</version>
         </dependency>
 
         <dependency>
@@ -110,12 +110,6 @@
             <artifactId>azure-identity</artifactId>
         </dependency>
 
-        <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
-        <dependency>
-            <groupId>io.netty</groupId>
-            <artifactId>netty-all</artifactId>
-        </dependency>
-
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
@@ -263,13 +257,9 @@
         </dependency>
 
         <dependency>
-            <groupId>io.projectreactor.netty</groupId>
-            <artifactId>reactor-netty</artifactId>
-        </dependency>
-        <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
-            <version>1.7.7</version>
+            <version>${slf4j.version}</version>
         </dependency>
 
         <dependency>
@@ -292,6 +282,20 @@
             <version>0.9.0.RELEASE</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/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/org.reflections/reflections -->
         <dependency>
             <groupId>org.reflections</groupId>
@@ -303,25 +307,36 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-simple</artifactId>
-            <version>1.8.0-beta4</version>
+            <version>${slf4j.version}</version>
             <scope>test</scope>
         </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>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <scope>test</scope>
         </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>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+            <version>${spring.version}</version>
+            <scope>test</scope>
         </dependency>
 
-    </dependencies>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>${spring.version}</version>
+            <scope>test</scope>
+        </dependency>
 
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+            <version>${spring.version}</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 
-</project>
\ No newline at end of file
+</project>