Skip to content

Commit c9edc1d

Browse files
committed
[release] Bump up version to 1.0.0-beta3
1 parent 1ba2b5c commit c9edc1d

File tree

9 files changed

+15
-43
lines changed

9 files changed

+15
-43
lines changed

azure-android-client-authentication/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ android {
1818
minSdkVersion 15
1919
targetSdkVersion 23
2020
versionCode 1
21-
versionName "1.0.0-SNAPSHOT"
21+
versionName "1.0.0-beta3"
2222
}
2323

2424
buildTypes {
@@ -51,7 +51,7 @@ dependencies {
5151
compile fileTree(dir: 'libs', include: ['*.jar'])
5252
compile 'com.android.support:appcompat-v7:23.0.1'
5353
compile 'com.microsoft.aad:adal:1.1.11'
54-
compile 'com.microsoft.azure:azure-client-runtime:1.0.0-SNAPSHOT'
54+
compile 'com.microsoft.azure:azure-client-runtime:1.0.0-beta3'
5555
testCompile 'junit:junit:4.12'
5656
testCompile 'junit:junit-dep:4.11'
5757
deployerJars "org.apache.maven.wagon:wagon-ftp:2.10"

azure-client-authentication/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
apply plugin: 'java'
1111
apply plugin: 'checkstyle'
1212

13-
version = '1.0.0-SNAPSHOT'
13+
version = '1.0.0-beta3'
1414

1515
checkstyle {
1616
toolVersion = "6.18"
@@ -21,7 +21,7 @@ checkstyle {
2121

2222
dependencies {
2323
compile 'com.microsoft.azure:adal4j:1.1.2'
24-
compile 'com.microsoft.azure:azure-client-runtime:1.0.0-SNAPSHOT'
24+
compile 'com.microsoft.azure:azure-client-runtime:1.0.0-beta3'
2525
testCompile 'junit:junit:4.12'
2626
testCompile 'junit:junit-dep:4.11'
2727
deployerJars "org.apache.maven.wagon:wagon-ftp:2.10"

azure-client-authentication/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.microsoft.azure</groupId>
1010
<artifactId>autorest-clientruntime-for-java</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
11+
<version>1.0.0-beta3</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.microsoft.azure</groupId>
5151
<artifactId>azure-client-runtime</artifactId>
52-
<version>1.0.0-SNAPSHOT</version>
52+
<version>1.0.0-beta3</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>com.microsoft.azure</groupId>

azure-client-runtime/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
apply plugin: 'java'
1111
apply plugin: 'checkstyle'
1212

13-
version = '1.0.0-SNAPSHOT'
13+
version = '1.0.0-beta3'
1414

1515
checkstyle {
1616
toolVersion = "6.18"
@@ -20,7 +20,7 @@ checkstyle {
2020
}
2121

2222
dependencies {
23-
compile 'com.microsoft.rest:client-runtime:1.0.0-SNAPSHOT'
23+
compile 'com.microsoft.rest:client-runtime:1.0.0-beta3'
2424
testCompile 'junit:junit:4.12'
2525
testCompile 'junit:junit-dep:4.11'
2626
deployerJars "org.apache.maven.wagon:wagon-ftp:2.10"

azure-client-runtime/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.microsoft.azure</groupId>
1010
<artifactId>autorest-clientruntime-for-java</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
11+
<version>1.0.0-beta3</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.microsoft.rest</groupId>
5151
<artifactId>client-runtime</artifactId>
52-
<version>${parent.version}</version>
52+
<version>1.0.0-beta3</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>junit</groupId>

build-tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.microsoft.azure</groupId>
1010
<artifactId>autorest-clientruntime-for-java</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
11+
<version>1.0.0-beta3</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

client-runtime/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
1212
apply plugin: 'checkstyle'
1313

1414
group = 'com.microsoft.rest'
15-
version = '1.0.0-SNAPSHOT'
15+
version = '1.0.0-beta3'
1616

1717
checkstyle {
1818
toolVersion = "6.18"

client-runtime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.microsoft.azure</groupId>
1010
<artifactId>autorest-clientruntime-for-java</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
11+
<version>1.0.0-beta3</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

pom.xml

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.microsoft.azure</groupId>
1010
<artifactId>autorest-clientruntime-for-java</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
11+
<version>1.0.0-beta3</version>
1212
<packaging>pom</packaging>
1313

1414
<name>AutoRest Client Runtimes for Java</name>
@@ -41,34 +41,6 @@
4141
</developer>
4242
</developers>
4343

44-
<repositories>
45-
<repository>
46-
<id>ossrh</id>
47-
<name>Sonatype Snapshots</name>
48-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
49-
<layout>default</layout>
50-
<snapshots>
51-
<enabled>true</enabled>
52-
<updatePolicy>always</updatePolicy>
53-
</snapshots>
54-
</repository>
55-
</repositories>
56-
57-
<distributionManagement>
58-
<snapshotRepository>
59-
<id>ossrh</id>
60-
<name>Maven Central Snapshots</name>
61-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
62-
<uniqueVersion>true</uniqueVersion>
63-
<layout>default</layout>
64-
</snapshotRepository>
65-
<repository>
66-
<id>ossrh</id>
67-
<name>Maven Central</name>
68-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
69-
</repository>
70-
</distributionManagement>
71-
7244
<dependencyManagement>
7345
<dependencies>
7446
<dependency>
@@ -150,7 +122,7 @@
150122
<dependency>
151123
<groupId>com.microsoft.azure</groupId>
152124
<artifactId>autorest-build-tools</artifactId>
153-
<version>1.0.0-SNAPSHOT</version>
125+
<version>1.0.0-beta3</version>
154126
</dependency>
155127
<dependency>
156128
<groupId>com.puppycrawl.tools</groupId>

0 commit comments

Comments
 (0)