Can netcdfAll-x.x.x.jar be downloaded using maven? #1408
-
I've been trying to incorporate netcdfAll into a pom.xml for downloading netcdfAll-5.7.0.jar and building dependent code using maven. Although I have been able to access cdm-core from the ucar repository, I was not able to access netcdfAll. I've included a snippet from my pom.xml below. Is there an alternate setup I should be using?
The message I receive from maven is
P.S. Just to let you know... I don't need an answer to this question right away because I am actually using cdm-core and associated jar files for accessing NetCDF files. Since I am not connecting to the THREDDS, I don't need the full suite of stuff at this time. But I wanted to ask the question for planning my future releases. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
The
netCDFAll
jar is intended to be used in projects that do not utilize a build system that can handle dependency resolution. It includes all 3rd party dependencies of the project, with the exception of a concrete logging implementation, as well as most other netCDF-Java artifacts.cdm-core
contains the core functionality of the library - other netCDF-Java artifacts can be pulled in as needed (for example,cdm-radial
to handle radar data formats,cdm-s3
for working with S3 compatible object storage systems, etc.). More details can be found at https://docs.unidata.ucar.edu/netcdf-java/current/userguide/using_netcdf_java_artifacts.html and https://docs.unidata.ucar.edu/netcdf-java/current/…