Skip to content

Commit c56ac2e

Browse files
author
Sabrina Juarez Garcia
committed
Keep legacy implementation
1 parent 503fb1f commit c56ac2e

File tree

5 files changed

+621
-32
lines changed

5 files changed

+621
-32
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>com.genexus</groupId>
9+
<artifactId>parent</artifactId>
10+
<version>${revision}${changelist}</version>
11+
</parent>
12+
13+
<artifactId>gxcloudstorage-azureblob-legacy</artifactId>
14+
<name>GeneXus Azure Blob Cloud Storage Legacy</name>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>${project.groupId}</groupId>
19+
<artifactId>gxclassR</artifactId>
20+
<version>${project.version}</version>
21+
<scope>test</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>com.genexus</groupId>
25+
<artifactId>gxcloudstorage-common</artifactId>
26+
<version>${project.version}</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.microsoft.azure</groupId>
30+
<artifactId>azure-storage</artifactId>
31+
<version>8.6.6</version>
32+
<exclusions>
33+
<exclusion>
34+
<groupId>com.microsoft.azure</groupId>
35+
<artifactId>azure-keyvault-core</artifactId>
36+
</exclusion>
37+
</exclusions>
38+
</dependency>
39+
</dependencies>
40+
</project>

0 commit comments

Comments
 (0)