Skip to content

Commit 60c3d42

Browse files
committed
Regenerated storage library and move to storage-v2 directory
1 parent aa72f49 commit 60c3d42

170 files changed

Lines changed: 49544 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

eng/versioning/version_client.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,7 @@ com.azure.v2:azure-security-keyvault-administration;5.0.0-beta.1;5.0.0-beta.1
500500
com.azure.v2:azure-security-keyvault-certificates;5.0.0-beta.1;5.0.0-beta.1
501501
com.azure.v2:azure-security-keyvault-secrets;5.0.0-beta.1;5.0.0-beta.1
502502
com.azure.v2:azure-security-keyvault-keys;5.0.0-beta.1;5.0.0-beta.1
503+
com.azure.v2:azure-storage-blob;13.0.0-beta.1;13.0.0-beta.1
503504
io.clientcore:clientcore-parent;1.0.0-beta.3;1.0.0-beta.3
504505
io.clientcore:core;1.0.0-beta.9;1.0.0-beta.10
505506
io.clientcore:http-netty4;1.0.0-beta.1;1.0.0-beta.1

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@
230230
<module>sdk/sqlvirtualmachine</module>
231231
<module>sdk/standbypool</module>
232232
<module>sdk/storage</module>
233+
<module>sdk/storage-v2</module>
233234
<module>sdk/storageactions</module>
234235
<module>sdk/storagecache</module>
235236
<module>sdk/storagemover</module>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Release History
2+
3+
## 13.0.0-beta.1 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Azure Storage Blob client library for Java
2+
3+
## Getting started
4+
5+
## Key concepts
6+
7+
## Examples
8+
9+
## Troubleshooting
10+
11+
## Next steps
12+
13+
## Next steps Samples
14+
15+
## Contributing
Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
<!--
2+
~ Copyright (c) Microsoft Corporation. All rights reserved.
3+
Licensed under the MIT License.
4+
Code generated by Microsoft (R) TypeSpec Code Generator.
5+
-->
6+
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
7+
<modelVersion>4.0.0</modelVersion>
8+
<parent>
9+
<groupId>com.azure.v2</groupId>
10+
<artifactId>azure-client-sdk-parent</artifactId>
11+
<version>2.0.0-beta.1</version> <!-- {x-version-update;com.azure.v2:azure-client-sdk-parent;current} -->
12+
<relativePath>../../parents/azure-client-sdk-parent-v2</relativePath>
13+
</parent>
14+
15+
<groupId>com.azure.v2</groupId>
16+
<artifactId>azure-storage-blob</artifactId>
17+
<version>13.0.0-beta.1</version> <!-- {x-version-update;com.azure.v2:azure-storage-blob;current} -->
18+
<packaging>jar</packaging>
19+
20+
<name>Microsoft Azure client library for Storage Blob</name>
21+
<description>This package contains the Microsoft Azure Storage Blob client library.</description>
22+
<url>https://github.com/Azure/azure-sdk-for-java</url>
23+
24+
<licenses>
25+
<license>
26+
<name>The MIT License (MIT)</name>
27+
<url>http://opensource.org/licenses/MIT</url>
28+
<distribution>repo</distribution>
29+
</license>
30+
</licenses>
31+
32+
<scm>
33+
<url>https://github.com/Azure/azure-sdk-for-java</url>
34+
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
35+
<developerConnection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</developerConnection>
36+
<tag>HEAD</tag>
37+
</scm>
38+
<developers>
39+
<developer>
40+
<id>microsoft</id>
41+
<name>Microsoft</name>
42+
</developer>
43+
</developers>
44+
<properties>
45+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46+
<spotless.skip>false</spotless.skip>
47+
<jacoco.min.linecoverage>0.15</jacoco.min.linecoverage>
48+
<jacoco.min.branchcoverage>0.10</jacoco.min.branchcoverage>
49+
<checkstyle.suppressionsLocation>checkstyle-suppressions.xml</checkstyle.suppressionsLocation>
50+
</properties>
51+
<dependencies>
52+
<dependency>
53+
<groupId>io.clientcore</groupId>
54+
<artifactId>core</artifactId>
55+
<version>1.0.0-beta.10</version> <!-- {x-version-update;unreleased_io.clientcore:core;dependency} -->
56+
</dependency>
57+
<dependency>
58+
<groupId>com.azure.v2</groupId>
59+
<artifactId>azure-core</artifactId>
60+
<version>2.0.0-beta.1</version> <!-- {x-version-update;unreleased_com.azure.v2:azure-core;dependency} -->
61+
</dependency>
62+
63+
<!-- Test scope -->
64+
<dependency>
65+
<groupId>com.azure.v2</groupId>
66+
<artifactId>azure-identity</artifactId>
67+
<version>2.0.0-beta.1</version> <!-- {x-version-update;unreleased_com.azure.v2:azure-identity;dependency} -->
68+
<scope>test</scope>
69+
</dependency>
70+
71+
<dependency>
72+
<groupId>com.azure.v2</groupId>
73+
<artifactId>azure-core-test</artifactId>
74+
<version>2.0.0-beta.1</version> <!-- {x-version-update;com.azure.v2:azure-core-test;dependency} -->
75+
<scope>test</scope>
76+
</dependency>
77+
78+
</dependencies>
79+
<build>
80+
<plugins>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-compiler-plugin</artifactId>
84+
<version>3.13.0</version> <!-- {x-version-update;org.apache.maven.plugins:maven-compiler-plugin;external_dependency} -->
85+
<executions>
86+
<execution>
87+
<id>run-annotation-processing</id>
88+
<phase>generate-sources</phase>
89+
<goals>
90+
<goal>compile</goal>
91+
</goals>
92+
<configuration>
93+
<source>1.8</source>
94+
<target>1.8</target>
95+
<release>8</release>
96+
<proc>only</proc>
97+
<generatedSourcesDirectory>${project.build.directory}/generated-sources/</generatedSourcesDirectory>
98+
<annotationProcessorPaths>
99+
<annotationProcessorPath>
100+
<groupId>io.clientcore</groupId>
101+
<artifactId>annotation-processor</artifactId>
102+
<version>1.0.0-beta.3</version> <!-- {x-version-update;unreleased_io.clientcore:annotation-processor;dependency} -->
103+
</annotationProcessorPath>
104+
</annotationProcessorPaths>
105+
<annotationProcessors>
106+
<annotationProcessor>io.clientcore.annotation.processor.AnnotationProcessor</annotationProcessor>
107+
</annotationProcessors>
108+
<compilerArgs>
109+
<arg>-Xlint:-options</arg>
110+
</compilerArgs>
111+
<excludes>
112+
<exclude>module-info.java</exclude>
113+
</excludes>
114+
</configuration>
115+
</execution>
116+
</executions>
117+
<dependencies>
118+
<dependency>
119+
<groupId>io.clientcore</groupId>
120+
<artifactId>annotation-processor</artifactId>
121+
<version>1.0.0-beta.3</version> <!-- {x-version-update;unreleased_io.clientcore:annotation-processor;dependency} -->
122+
</dependency>
123+
</dependencies>
124+
</plugin>
125+
</plugins>
126+
</build>
127+
</project>

0 commit comments

Comments
 (0)