I am trying to get JCSG and all it’s dependencies into an eclipse java project. I’ve asked Google and Chatgpt how to set it up and they all give different values for the gradle dependency to pull it all in. They all fail with unresolved dependency. Has anyone done this and how did you do it?
I tried multiple domains and multiple versions with something like this for build.gradle:
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.miho:jcsg:2.1.0'
}
Note: sorry for the formatting, the form would not let me include it with the proper spacing for some reason.
Gary Renner is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1