Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit e970a8e

Browse files
authored
Merge pull request #376 from prjain-msft/New-Storage-SDK-V10-Preview
added queues sdk as a module in the azure-storage-java
2 parents ebdc214 + a4a4268 commit e970a8e

File tree

358 files changed

+18196
-114
lines changed

Some content is hidden

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

358 files changed

+18196
-114
lines changed

README.md

Lines changed: 86 additions & 5 deletions

blob/.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
target/
2+
pom.xml.tag
3+
pom.xml.releaseBackup
4+
pom.xml.versionsBackup
5+
pom.xml.next
6+
release.properties
7+
dependency-reduced-pom.xml
8+
buildNumber.properties
9+
.mvn/timing.properties
10+
11+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
12+
!/.mvn/wrapper/maven-wrapper.jar
13+
14+
*.iml
15+
.idea/
File renamed without changes.
File renamed without changes.

blob/pom.xml

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
<!--
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
Licensed under the MIT License. See License.txt in the project root for
4+
license information.
5+
-->
6+
<!--
7+
Copyright (c) Microsoft Corporation. All rights reserved.
8+
Licensed under the MIT License. See License.txt in the project root for
9+
license information.
10+
-->
11+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13+
<parent>
14+
<artifactId>azure-storage-java</artifactId>
15+
<groupId>com.microsoft.azure</groupId>
16+
<version>10</version>
17+
</parent>
18+
<modelVersion>4.0.0</modelVersion>
19+
20+
<artifactId>azure-storage-blob</artifactId>
21+
<version>10.1.0</version>
22+
<name>Azure Storage Blob</name>
23+
<description>The Azure Storage Java Blob library.</description>
24+
25+
<licenses>
26+
<license>
27+
<name>The MIT License (MIT)</name>
28+
<url>http://opensource.org/licenses/MIT</url>
29+
<distribution>repo</distribution>
30+
</license>
31+
</licenses>
32+
33+
<properties>
34+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35+
<legal>
36+
<![CDATA[[INFO] Any downloads listed may be third party software. Microsoft grants you no rights for third party software.]]></legal>
37+
</properties>
38+
39+
<developers>
40+
<developer>
41+
<id>microsoft</id>
42+
<name>Microsoft</name>
43+
</developer>
44+
</developers>
45+
<dependencies>
46+
<!-- The two dependencies are required for mocking in test. -->
47+
<dependency>
48+
<groupId>cglib</groupId>
49+
<artifactId>cglib-nodep</artifactId>
50+
<version>3.2.7</version>
51+
<scope>test</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.objenesis</groupId>
55+
<artifactId>objenesis</artifactId>
56+
<version>2.6</version>
57+
<scope>test</scope>
58+
</dependency>
59+
</dependencies>
60+
<build>
61+
<testSourceDirectory>src/test/java</testSourceDirectory>
62+
63+
<plugins>
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-compiler-plugin</artifactId>
67+
<version>3.1</version>
68+
<configuration>
69+
<compilerId>groovy-eclipse-compiler</compilerId>
70+
<compilerArgument>-Xlint:unchecked</compilerArgument>
71+
<source>1.8</source>
72+
<target>1.8</target>
73+
<showDeprecation>true</showDeprecation>
74+
</configuration>
75+
<dependencies>
76+
<dependency>
77+
<groupId>org.codehaus.groovy</groupId>
78+
<artifactId>groovy-eclipse-compiler</artifactId>
79+
<version>2.9.3-01</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.codehaus.groovy</groupId>
83+
<artifactId>groovy-eclipse-batch</artifactId>
84+
<version>2.4.15-01</version>
85+
</dependency>
86+
</dependencies>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-surefire-plugin</artifactId>
91+
<version>2.20.1</version>
92+
<configuration>
93+
<includes>
94+
<include>**/Test*.*</include>
95+
<include>**/*Test.*</include>
96+
<include>**/*Tests.*</include>
97+
<include>**/*Samples*.*</include>
98+
</includes>
99+
</configuration>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-javadoc-plugin</artifactId>
104+
<version>2.10.1</version>
105+
<configuration>
106+
<!-- force links to Java 8 documentation (should happen automatically
107+
but doesn't) -->
108+
<javaApiLinks>
109+
<property>
110+
<name>api_1.8</name>
111+
<value>https://docs.oracle.com/javase/8/docs/api/</value>
112+
</property>
113+
</javaApiLinks>
114+
<!-- add license notice -->
115+
<bottom>
116+
<![CDATA[This documentation was released into the public domain.]]>
117+
</bottom>
118+
<tags>
119+
<tag>
120+
<name>apiNote</name>
121+
<placement>m</placement>
122+
<head>API Note:</head>
123+
</tag>
124+
</tags>
125+
</configuration>
126+
</plugin>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-release-plugin</artifactId>
130+
<version>2.5.2</version>
131+
</plugin>
132+
<plugin>
133+
<groupId>org.codehaus.mojo</groupId>
134+
<artifactId>build-helper-maven-plugin</artifactId>
135+
</plugin>
136+
</plugins>
137+
</build>
138+
</project>

src/main/java/com/microsoft/azure/storage/GeneratedAppendBlobs.java renamed to blob/src/main/java/com/microsoft/azure/storage/GeneratedAppendBlobs.java

File renamed without changes.

src/main/java/com/microsoft/azure/storage/GeneratedBlobs.java renamed to blob/src/main/java/com/microsoft/azure/storage/GeneratedBlobs.java

File renamed without changes.

src/main/java/com/microsoft/azure/storage/GeneratedBlockBlobs.java renamed to blob/src/main/java/com/microsoft/azure/storage/GeneratedBlockBlobs.java

File renamed without changes.

0 commit comments

Comments
 (0)