Hi @vshivk99 … I’m assuming (??) that you are looking at the JCSMP samples? Or are you looking at specific Spring samples??
If you don’t have access to a network to allow Gradle to download the required JARs, then you’ll need to manually copy in the required JARs and place them in a lib folder or something similar to use. Main ones you’ll need can be downloaded from https://solace.com/downloads, the Java/JCSMP API, and then modify the build.gradle file by changing the repositories section:
repositories {
mavenCentral()
jcenter()
flatDir { // temporary until new API is moved to central repo
dirs 'lib' // create a 'lib' folder and copy all required JARs in
}
}
Or have Eclipse or whatever build the samples once you get the required JARs downloaded.
Good luck!