在根项目 'bin' 中找不到任务 'bintrayUpload'
Task 'bintrayUpload' not found in root project 'bin'
我遵循了将我的 AAR 文件发布到 JCenter 然后使用 https://github.com/danielemaddaluno/gradle-jcenter-publish 将其与 Maven Central 同步所需的每个步骤。
我按照他的第 13 步和第 14 步写了这个命令,但得到了这个错误:
G:\Android 开发Application\android-studio\gradle\gradle-2.2.1\bin>gradle bintrayUpload
失败:构建失败,出现异常。
- 出了什么问题:
在根项目 'bin' 中找不到任务 'bintrayUpload'。
build.gradle(项目:xxxx)
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
apply plugin: 'com.jfrog.bintray'
repositories {
jcenter()
}
}
发生此错误的原因可能是系统环境变量中缺少 JDK 和 JRE“bin”路径。
只需在环境变量中添加 JDK 和 JRE“bin”文件夹的路径即可。
要添加路径,请按照以下步骤操作:
第 1 步:右键单击,在我的 Computer/This PC(Windows 8.1)上。
第 2 步:单击“属性”。
第 3 步:单击左侧菜单中的“高级系统设置”,将打开一个对话框。
第 4 步:使用“高级”选项卡进行对话,移至对话末尾并单击“环境变量”按钮。
第5步:在系统变量中,在变量path / PATH.
中添加JDK和JRE的路径
Example of JDK and JRE path :
C:\Program Files (x86)\Java\jre1.8.0_40\bin
C:\Program Files\Java\jre1.8.0_31\bin
我遵循了将我的 AAR 文件发布到 JCenter 然后使用 https://github.com/danielemaddaluno/gradle-jcenter-publish 将其与 Maven Central 同步所需的每个步骤。 我按照他的第 13 步和第 14 步写了这个命令,但得到了这个错误:
G:\Android 开发Application\android-studio\gradle\gradle-2.2.1\bin>gradle bintrayUpload
失败:构建失败,出现异常。
- 出了什么问题:
在根项目 'bin' 中找不到任务 'bintrayUpload'。
build.gradle(项目:xxxx)
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
apply plugin: 'com.jfrog.bintray'
repositories {
jcenter()
}
}
发生此错误的原因可能是系统环境变量中缺少 JDK 和 JRE“bin”路径。
只需在环境变量中添加 JDK 和 JRE“bin”文件夹的路径即可。
要添加路径,请按照以下步骤操作:
第 1 步:右键单击,在我的 Computer/This PC(Windows 8.1)上。
第 2 步:单击“属性”。
第 3 步:单击左侧菜单中的“高级系统设置”,将打开一个对话框。
第 4 步:使用“高级”选项卡进行对话,移至对话末尾并单击“环境变量”按钮。
第5步:在系统变量中,在变量path / PATH.
中添加JDK和JRE的路径Example of JDK and JRE path :
C:\Program Files (x86)\Java\jre1.8.0_40\bin
C:\Program Files\Java\jre1.8.0_31\bin