Skip to content

Commit 9699eef

Browse files
authored
add azure blob storage java library (#24591)
* add azure blob storage java library * extract version * update version
1 parent b7cc6c0 commit 9699eef

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

graylog2-server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,10 @@
414414
<groupId>com.google.cloud</groupId>
415415
<artifactId>google-cloud-storage</artifactId>
416416
</dependency>
417+
<dependency>
418+
<groupId>com.azure</groupId>
419+
<artifactId>azure-storage-blob</artifactId>
420+
</dependency>
417421

418422
<!-- Logging dependencies -->
419423
<dependency>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@
130130
<error-prone.version>2.45.0</error-prone.version>
131131
<freemarker.version>2.3.34</freemarker.version>
132132
<gcs.version>2.61.0</gcs.version>
133+
<azure-blob-storage.version>12.32.0</azure-blob-storage.version>
133134
<gelfclient.version>1.5.1</gelfclient.version>
134135
<geoip2.version>4.4.0</geoip2.version>
135136
<grok.version>0.1.9-graylog-3</grok.version>
@@ -314,6 +315,11 @@
314315
<artifactId>google-cloud-storage</artifactId>
315316
<version>${gcs.version}</version>
316317
</dependency>
318+
<dependency>
319+
<groupId>com.azure</groupId>
320+
<artifactId>azure-storage-blob</artifactId>
321+
<version>${azure-blob-storage.version}</version>
322+
</dependency>
317323
<dependency>
318324
<groupId>io.netty</groupId>
319325
<artifactId>netty-tcnative-classes</artifactId>

0 commit comments

Comments
 (0)