Hi Nadeem.
Yes, you can add repositories to gradle build.
Please, have a look to this link:
https://www.javatpoint.com/gradle-repository
Just edit build.gradle file and add something like
1. repositories {
2. maven {
3. url 'https://mvnrepository.com/'
4. }
5. }
Hi Francisco,
Thank you for the suggestion.
We'd tried that as well. We'd added *openchart* dependency to our gradle
config. This is what we did:
// https://mvnrepository.com/artifact/openchart/openchart
implementation group: 'openchart', name: 'openchart', version: '1.4.2'
compile
Hi Nadeem.
Some maven repositories have changed, so some old libraries are moved.
You can add a new repository to gradle compilation. According to this
search:
https://mvnrepository.com/artifact/openchart/openchart/1.4.2
you can find this library in mvnrepository.com, so add it to your gradle
conf
Hi Jose,
Thank you for the quick response.
We tried the *--refresh-dependencies *option telling Gradle to ignore all
cached entries for resolved modules and artifacts. This is what we did:
*./gradlew build --refresh-dependencies*
However, we're still getting the error:
> Could not resolve all
The openchart dependency is a sub-dependency of the forester library and it
is not in maven central but in a third party repo. In any case maven should
find the third party repo automatically as it is indicated in its
corresponding pom.xml file. Have you tried cleaning and rebuilding forcing
update
Hello,
We are trying to change the version of the biojava from 4.0.0 to 6.0.4 in
our application.
We have upgraded the biojava-core & biojava-aa-prop from 4.0.0 > 6.0.4
During the version bump, the build is failing which says the following:
* What went wrong:
Execution failed for task ':compileJa