Project: cjwizard Artifacts: cjwizard and cjwizard-demo, both version 1.0.9
I just took over this project from the original owner and I am new to both the maven deploy process and Bintray.
After doing a mvn:deploy which (according to my Maven logs) was successful, I could see the pom.xml for both cjwizard AND cjwizard-demo, but I have a small project that is using gradle to try to pull down both cjwizard and cjwizard-demo and it's failing.
(EDIT: I modified my build.gradle to just download one artifact at a time. This is a simple test project, and there are no other dependencies, other than cjwizard)
My build.gradle looks like this
group 'test'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'com.github.cjwizard:cjwizard:1.0.9'
}
(I normally use gradle on my own projects. I am using maven to build cjwizard because the project was already set up to use maven)
I'm getting an error stating that the cjwizard artifact can't be resolved. Same problem with cjwizard-demo.
Am I doing something wrong?
Also, are open-source projects ineligible for email support? Thanks
