Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 12 additions & 18 deletions v12/pom.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
<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">
<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>
<groupId>Azure-Storage-SDK-V10-Java</groupId>
<artifactId>QuickStart</artifactId>
<version>0.1</version>
<repositories>
<repository>
<id>commicrosoftazure-2334</id>
<name>commicrosoftazure-2334</name>
<url>https://oss.sonatype.org/content/repositories/commicrosoftazure-2334</url>
</repository>
</repositories>

<build>
<plugins>
Expand All @@ -25,7 +19,7 @@
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
Expand All @@ -34,20 +28,20 @@
<mainClass>quickstart.Quickstart</mainClass>
</configuration>
</plugin>

</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-common</artifactId>
<version>12.0.0</version>
</dependency>
<groupId>com.azure</groupId>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally, we would be referencing the BOM (azure-sdk-bom) so that the dependencies are aligned. azure-storage-blob transitively brings in azure-storage-common so you do not need to explicitly reference this.

https://search.maven.org/artifact/com.azure/azure-sdk-bom/1.0.5/pom

<artifactId>azure-storage-common</artifactId>
<version>12.13.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.0.0</version>
</dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.14.0</version>
</dependency>
</dependencies>
</project>