Hello All,
I am trying to use the gradle miniconda plugin (link below) to build python code using gradle.
“https://plugins.gradle.org/plugin/com.palantir.mlx.build.miniconda/0.1.0”
I am new to gradle. I have used the below config in build.gradle. I am building with gradle 1.11.
###############################
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.palantir.mlx.build:gradle-miniconda-plugin:0.1.0"
}
}
apply plugin: "com.palantir.mlx.build.miniconda"
##########################################
Now when I run gradle build, it is failing as shown below
######################################
jaspreet@jaspreet:~/testproject$ gradle build
FAILURE: Build failed with an exception.
-
What went wrong:
A problem occurred configuring root project ‘testproject’.
> Could not resolve all dependencies for configuration ‘:minicondaInstaller’.
> Could not resolve miniconda:Miniconda:.
Required by:
:testproject:unspecified
> Illegal character in path at index 46: http://repo.continuum.io/miniconda/Miniconda--[classifier].xml -
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 3.177 secs
####################################################
Can someone help with the above. Also where can I find more info on this plugin on how to build python code with gradle.
Thanks,
Jaspreet Singh