-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update readme for storage libraries to include BOM information. #22858
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,40 @@ This package supports client side encryption for blob storage. | |
|
||
### Include the package | ||
|
||
#### Include the BOM file | ||
|
||
Please include the azure-sdk-bom to your project to take dependency on GA version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library. |
||
To learn more about the BOM, see the [AZURE SDK BOM README](https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/boms/azure-sdk-bom/README.md). | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-sdk-bom</artifactId> | ||
<version>{bom_version_to_target}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
and then include the direct dependency in the dependencies section without the version tag. | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-storage-blob-cryptography</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
#### Include direct dependency | ||
If you want to take dependency on a particular version of the library that is not present in the BOM, | ||
add the direct dependency to your project as follows. | ||
|
||
|
||
[//]: # ({x-version-update-start;com.azure:azure-storage-blob-cryptography;current}) | ||
```xml | ||
<dependency> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,39 @@ definition, such as text or binary data. | |
|
||
### Include the package | ||
|
||
#### Include the BOM file | ||
|
||
Please include the azure-sdk-bom to your project to take dependency on GA version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library. |
||
To learn more about the BOM, see the [AZURE SDK BOM README](https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/boms/azure-sdk-bom/README.md). | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-sdk-bom</artifactId> | ||
<version>{bom_version_to_target}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
and then include the direct dependency in the dependencies section without the version tag. | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-storage-blob</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
#### Include direct dependency | ||
If you want to take dependency on a particular version of the library that is not present in the BOM, | ||
add the direct dependency to your project as follows. | ||
|
||
[//]: # ({x-version-update-start;com.azure:azure-storage-blob;current}) | ||
```xml | ||
<dependency> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,40 @@ Azure Storage Common is a library that has common dependencies for all Azure Sto | |
|
||
### Include the package | ||
|
||
#### Include the BOM file | ||
|
||
Please include the azure-sdk-bom to your project to take dependency on GA version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library. |
||
To learn more about the BOM, see the [AZURE SDK BOM README](https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/boms/azure-sdk-bom/README.md). | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-sdk-bom</artifactId> | ||
<version>{bom_version_to_target}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
and then include the direct dependency in the dependencies section without the version tag. | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-storage-common</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
#### Include direct dependency | ||
If you want to take dependency on a particular version of the library that is not present in the BOM, | ||
add the direct dependency to your project as follows. | ||
|
||
|
||
[//]: # ({x-version-update-start;com.azure:azure-storage-common;current}) | ||
```xml | ||
<dependency> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,38 @@ efficient data access. | |
|
||
### Include the package | ||
|
||
Add a dependency on Azure Storage File Datalake | ||
#### Include the BOM file | ||
|
||
Please include the azure-sdk-bom to your project to take dependency on GA version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library. |
||
To learn more about the BOM, see the [AZURE SDK BOM README](https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/boms/azure-sdk-bom/README.md). | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-sdk-bom</artifactId> | ||
<version>{bom_version_to_target}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
and then include the direct dependency in the dependencies section without the version tag. | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-storage-file-datalake</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
#### Include direct dependency | ||
If you want to take dependency on a particular version of the library that is not present in the BOM, | ||
add the direct dependency to your project as follows. | ||
|
||
[//]: # ({x-version-update-start;com.azure:azure-storage-file-datalake;current}) | ||
```xml | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,40 @@ Shares provide a way to organize sets of files and also can be mounted as an SMB | |
|
||
### Include the package | ||
|
||
#### Include the BOM file | ||
|
||
Please include the azure-sdk-bom to your project to take dependency on GA version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library. |
||
To learn more about the BOM, see the [AZURE SDK BOM README](https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/boms/azure-sdk-bom/README.md). | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-sdk-bom</artifactId> | ||
<version>{bom_version_to_target}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
and then include the direct dependency in the dependencies section without the version tag. | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-storage-file-share</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
#### Include direct dependency | ||
If you want to take dependency on a particular version of the library that is not present in the BOM, | ||
add the direct dependency to your project as follows. | ||
|
||
|
||
[//]: # ({x-version-update-start;com.azure:azure-storage-file-share;current}) | ||
```xml | ||
<dependency> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,39 @@ A single queue message can be up to 64 KB in size, and a queue can contain milli | |
|
||
### Include the package | ||
|
||
#### Include the BOM file | ||
|
||
Please include the azure-sdk-bom to your project to take dependency on GA version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library. |
||
To learn more about the BOM, see the [AZURE SDK BOM README](https://raw.githubusercontent.com/Azure/azure-sdk-for-java/main/sdk/boms/azure-sdk-bom/README.md). | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-sdk-bom</artifactId> | ||
<version>{bom_version_to_target}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
``` | ||
and then include the direct dependency in the dependencies section without the version tag. | ||
|
||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-storage-queue</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
#### Include direct dependency | ||
If you want to take dependency on a particular version of the library that is not present in the BOM, | ||
add the direct dependency to your project as follows. | ||
|
||
[//]: # ({x-version-update-start;com.azure:azure-storage-queue;current}) | ||
```xml | ||
<dependency> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please include the azure-sdk-bom to your project to take a dependency on the General Availability (GA) version of the library.