Upgrade toolkits lib to fix basic auth issue
This commit is contained in:
Родитель
ad1eddce7f
Коммит
34ba888ee3
|
@ -360,7 +360,7 @@ public class DeployHandler {
|
|||
}
|
||||
final ComparableVersion runtimeVersion = new ComparableVersion(runtime.javaVersion().getValue());
|
||||
final File file = this.ctx.getProject().getArtifactFile().toFile();
|
||||
final ComparableVersion artifactVersion = new ComparableVersion(Utils.getArtifactCompileVersion(file));
|
||||
final ComparableVersion artifactVersion = new ComparableVersion(String.valueOf(Utils.getArtifactCompileVersion(file)));
|
||||
if (runtimeVersion.compareTo(artifactVersion) < 0) {
|
||||
throw new AzureToolkitRuntimeException(ARTIFACT_INCOMPATIBLE);
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ subprojects {
|
|||
targetCompatibility = 1.8
|
||||
|
||||
ext {
|
||||
azureToolkitVersion = "0.29.0"
|
||||
azureToolkitVersion = "0.33.0"
|
||||
}
|
||||
|
||||
checkstyle {
|
||||
|
@ -68,8 +68,6 @@ subprojects {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
configure(subprojects.findAll {it.name != 'azure-gradle-plugins-common'}) {
|
||||
apply plugin: 'java-gradle-plugin'
|
||||
apply plugin: 'com.gradle.plugin-publish'
|
||||
|
|
Загрузка…
Ссылка в новой задаче