Skip to content

Commit

Permalink
Fix flattening and bump up to 1.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghaolu committed Mar 1, 2016
1 parent b6b7223 commit 23b9424
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
7 changes: 4 additions & 3 deletions azure-android-client-authentication/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
apply plugin: 'com.android.library'
apply plugin: 'maven'

version = '1.0.0-SNAPSHOT'
version = '1.0.0-beta1'

android {
compileSdkVersion 23
Expand All @@ -18,7 +18,7 @@ android {
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "0.0.1-SNAPSHOT"
versionName "1.0.0-beta1"
}

buildTypes {
Expand All @@ -42,7 +42,7 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.microsoft.aad:adal:1.1.11'
compile 'com.microsoft.rest:client-runtime:1.0.0-SNAPSHOT'
compile 'com.microsoft.rest:client-runtime:1.0.0-beta1'
testCompile 'junit:junit:4.12'
testCompile 'junit:junit-dep:4.11'
deployerJars "org.apache.maven.wagon:wagon-ftp:2.10"
Expand All @@ -55,6 +55,7 @@ uploadArchives {
snapshotRepository(url: "ftp://waws-prod-bay-005.ftp.azurewebsites.windows.net/site/wwwroot/") {
authentication(userName: username, password: password)
}
repository(url: "file://$buildDir/repository")
pom.setArtifactId "azure-android-client-authentication"
pom.project {
name 'Microsoft Azure AutoRest Authentication Library for Java'
Expand Down
5 changes: 3 additions & 2 deletions azure-client-authentication/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
apply plugin: 'java'
apply plugin: 'checkstyle'

version = '1.0.0-SNAPSHOT'
version = '1.0.0-beta1'

checkstyle {
configFile = new File("$rootDir/Tools/checkstyle/checkstyle.xml")
Expand All @@ -20,7 +20,7 @@ checkstyle {

dependencies {
compile 'com.microsoft.azure:adal4j:1.1.2'
compile 'com.microsoft.rest:client-runtime:1.0.0-SNAPSHOT'
compile 'com.microsoft.rest:client-runtime:1.0.0-beta1'
testCompile 'junit:junit:4.12'
testCompile 'junit:junit-dep:4.11'
deployerJars "org.apache.maven.wagon:wagon-ftp:2.10"
Expand All @@ -33,6 +33,7 @@ uploadArchives {
snapshotRepository(url: "ftp://waws-prod-bay-005.ftp.azurewebsites.windows.net/site/wwwroot/") {
authentication(userName: username, password: password)
}
repository(url: "file://$buildDir/repository")
pom.setArtifactId "azure-client-authentication"
pom.project {
name 'Microsoft Azure AutoRest Authentication Library for Java'
Expand Down
5 changes: 3 additions & 2 deletions azure-client-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
apply plugin: 'java'
apply plugin: 'checkstyle'

version = '1.0.0-SNAPSHOT'
version = '1.0.0-beta1'

checkstyle {
toolVersion = "6.9"
Expand All @@ -20,7 +20,7 @@ checkstyle {
}

dependencies {
compile 'com.microsoft.rest:client-runtime:1.0.0-SNAPSHOT'
compile 'com.microsoft.rest:client-runtime:1.0.0-beta1'
testCompile 'junit:junit:4.12'
testCompile 'junit:junit-dep:4.11'
deployerJars "org.apache.maven.wagon:wagon-ftp:2.10"
Expand All @@ -33,6 +33,7 @@ uploadArchives {
snapshotRepository(url: "ftp://waws-prod-bay-005.ftp.azurewebsites.windows.net/site/wwwroot/") {
authentication(userName: username, password: password)
}
repository(url: "file://$buildDir/repository")
pom.setArtifactId "azure-client-runtime"
pom.project {
name 'Microsoft Azure AutoRest Runtime for Java'
Expand Down
3 changes: 2 additions & 1 deletion client-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'checkstyle'

group = 'com.microsoft.rest'
version = '1.0.0-SNAPSHOT'
version = '1.0.0-beta1'

checkstyle {
toolVersion = "6.9"
Expand Down Expand Up @@ -43,6 +43,7 @@ uploadArchives {
snapshotRepository(url: "ftp://waws-prod-bay-005.ftp.azurewebsites.windows.net/site/wwwroot/") {
authentication(userName: username, password: password)
}
repository(url: "file://$buildDir/repository")
pom.project {
name 'Microsoft AutoRest Runtime for Java'
description 'This is the client runtime for AutoRest generated Java clients.'
Expand Down

0 comments on commit 23b9424

Please sign in to comment.