From 6a55883946bee911791858cfc58fc977f61b238e Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Fri, 7 Oct 2016 18:13:58 -0700 Subject: [PATCH 1/2] Use runtime snapshots and local dag --- azure-mgmt-batch/pom.xml | 4 ++-- azure-mgmt-compute/pom.xml | 4 ++-- azure-mgmt-graph-rbac/pom.xml | 4 ++-- azure-mgmt-keyvault/pom.xml | 4 ++-- azure-mgmt-network/pom.xml | 4 ++-- azure-mgmt-redis/pom.xml | 6 +++--- azure-mgmt-resources/pom.xml | 4 ++-- .../implementation/CreateUpdateTask.java | 2 +- .../implementation/CreateUpdateTaskGroup.java | 2 +- .../resources/fluentcore/dag/DAGraphTest.java | 2 -- .../fluentcore/dag/DAGraphTests.java | 2 -- azure-mgmt-search/pom.xml | 4 ++-- azure-mgmt-storage/pom.xml | 4 ++-- azure-mgmt-website/pom.xml | 2 +- azure/pom.xml | 6 +++--- pom.xml | 19 ++++++++++++++++--- 16 files changed, 41 insertions(+), 32 deletions(-) diff --git a/azure-mgmt-batch/pom.xml b/azure-mgmt-batch/pom.xml index 5dbf05c96eac..bf03ba8820a5 100644 --- a/azure-mgmt-batch/pom.xml +++ b/azure-mgmt-batch/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -64,7 +64,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-compute/pom.xml b/azure-mgmt-compute/pom.xml index b60a1409c702..79d817252e9f 100644 --- a/azure-mgmt-compute/pom.xml +++ b/azure-mgmt-compute/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -74,7 +74,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-graph-rbac/pom.xml b/azure-mgmt-graph-rbac/pom.xml index 385a14e79a55..54d5dd010df6 100644 --- a/azure-mgmt-graph-rbac/pom.xml +++ b/azure-mgmt-graph-rbac/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -64,7 +64,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-keyvault/pom.xml b/azure-mgmt-keyvault/pom.xml index fa4265770436..cd03fd6d663f 100644 --- a/azure-mgmt-keyvault/pom.xml +++ b/azure-mgmt-keyvault/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -69,7 +69,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-network/pom.xml b/azure-mgmt-network/pom.xml index d2e85013766d..db141c096911 100644 --- a/azure-mgmt-network/pom.xml +++ b/azure-mgmt-network/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -64,7 +64,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-redis/pom.xml b/azure-mgmt-redis/pom.xml index 703c0896685f..051464c6bf7a 100644 --- a/azure-mgmt-redis/pom.xml +++ b/azure-mgmt-redis/pom.xml @@ -48,7 +48,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -63,7 +63,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test @@ -74,7 +74,7 @@ com.microsoft.azure azure-mgmt-storage - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-resources/pom.xml b/azure-mgmt-resources/pom.xml index 6e6ffdd34772..4724f4d44538 100644 --- a/azure-mgmt-resources/pom.xml +++ b/azure-mgmt-resources/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT junit @@ -63,7 +63,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTask.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTask.java index cf0fc1e39595..e9e122e024ea 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTask.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTask.java @@ -1,6 +1,6 @@ package com.microsoft.azure.management.resources.fluentcore.model.implementation; -import com.microsoft.azure.TaskItem; +import com.microsoft.azure.management.resources.fluentcore.dag.TaskItem; import rx.Observable; import rx.functions.Action1; import rx.schedulers.Schedulers; diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTaskGroup.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTaskGroup.java index a02882a8ed06..407e7cf119bd 100644 --- a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTaskGroup.java +++ b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/fluentcore/model/implementation/CreateUpdateTaskGroup.java @@ -1,6 +1,6 @@ package com.microsoft.azure.management.resources.fluentcore.model.implementation; -import com.microsoft.azure.TaskGroupBase; +import com.microsoft.azure.management.resources.fluentcore.dag.TaskGroupBase; import rx.Observable; /** diff --git a/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTest.java b/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTest.java index 5a27a25e93d0..96951c59ec84 100644 --- a/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTest.java +++ b/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTest.java @@ -1,7 +1,5 @@ package com.microsoft.azure.management.resources.fluentcore.dag; -import com.microsoft.azure.DAGNode; -import com.microsoft.azure.DAGraph; import org.junit.Assert; import org.junit.Test; diff --git a/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTests.java b/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTests.java index 7b4c77d7de9c..afc306095ce9 100644 --- a/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTests.java +++ b/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/fluentcore/dag/DAGraphTests.java @@ -7,8 +7,6 @@ package com.microsoft.azure.management.resources.fluentcore.dag; -import com.microsoft.azure.DAGNode; -import com.microsoft.azure.DAGraph; import org.junit.Assert; import org.junit.Test; diff --git a/azure-mgmt-search/pom.xml b/azure-mgmt-search/pom.xml index 539bf5ed4bac..b177e63792d3 100644 --- a/azure-mgmt-search/pom.xml +++ b/azure-mgmt-search/pom.xml @@ -50,7 +50,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -65,7 +65,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-storage/pom.xml b/azure-mgmt-storage/pom.xml index 3c1e5c7963fd..b338680cba6d 100644 --- a/azure-mgmt-storage/pom.xml +++ b/azure-mgmt-storage/pom.xml @@ -49,7 +49,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -64,7 +64,7 @@ com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT test diff --git a/azure-mgmt-website/pom.xml b/azure-mgmt-website/pom.xml index 4b478d4fb505..cb5785ba6bfe 100644 --- a/azure-mgmt-website/pom.xml +++ b/azure-mgmt-website/pom.xml @@ -50,7 +50,7 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure diff --git a/azure/pom.xml b/azure/pom.xml index 31bfa9843de4..fb411b5bdcda 100644 --- a/azure/pom.xml +++ b/azure/pom.xml @@ -49,12 +49,12 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure @@ -79,7 +79,7 @@ com.microsoft.azure azure-mgmt-graph-rbac - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure diff --git a/pom.xml b/pom.xml index 3afd19fa52b1..ea6948342587 100644 --- a/pom.xml +++ b/pom.xml @@ -41,6 +41,19 @@ + + + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + + + + @@ -66,12 +79,12 @@ com.microsoft.azure azure-client-runtime - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.microsoft.azure azure-client-authentication - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT @@ -94,7 +107,7 @@ com.microsoft.azure autorest-build-tools - 1.0.0-beta3 + 1.0.0-beta4-SNAPSHOT com.puppycrawl.tools From bf7b52d7612b965545f9745c0d54785e43d0f7fe Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Mon, 10 Oct 2016 15:34:33 -0700 Subject: [PATCH 2/2] Add plugin repository --- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pom.xml b/pom.xml index ea6948342587..5480c588bccd 100644 --- a/pom.xml +++ b/pom.xml @@ -54,6 +54,19 @@ + + + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + + + +