Our organization works in an isolated network so when we want to use libraries we need to retrieve them from maven-central and upload then to our own maven repository.
I am searching for way do download all the files of my required dependencies,
I have used gradle gradle eclipseClasspath
to do this but it is not downloading all the files. for example org.jacoco:jacoco:0.7.8
contains a zip file and when I look in the GRADLE_USER_HOME
I can not find the zip.
build.gradle:
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
compile 'org.jacoco:jacoco:0.7.8'
}
What should I do?