Re: Lots of problems resolving maven dependencies in Ant

2020-05-22 Thread Rick Mann
No worries. I've moved on to Maven. > On May 21, 2020, at 08:47 , Davide Grandi wrote: > > I've download and checked ONLY the _source_ package. > Maybe the old URL is ALSO in _bin_ package, maybe in a config file buried > somewhere. > > So, if you check the plain binary files, unzipping all th

Re: Lots of problems resolving maven dependencies in Ant

2020-05-21 Thread Davide Grandi
I've download and checked ONLY the _source_ package. Maybe the old URL is ALSO in _bin_ package, maybe in a config file buried somewhere. So, if you check the plain binary files, unzipping all the jars (in case the URL is a resource file ...). Sorry to be late ... Cheers,     Davide On 19

Re: Lots of problems resolving maven dependencies in Ant

2020-05-18 Thread Rick Mann
Welp, that didn't work. So I downloaded the sources and modified the code (turns out mvn works fine to build it). Now it *KNOWS* it's https, and it still does the wrong thing. I can't figure out where the http: is coming from: ``` $ ant build Buildfile: /Users/rmann/Projects/Personal/SatDB/repo/

Re: Lots of problems resolving maven dependencies in Ant

2020-05-18 Thread Davide Grandi
Sorry, but this ant "corner" is out of my paths. Your idea is worth trying: -- [artifact:dependencies] from the specified remote repositories: [artifact:dependencies] maven-group (https://repo1.maven.org/maven2/), [artifact:dependencies] central (http://repo1.maven.org/maven2), [artifact:dep

Re: Lots of problems resolving maven dependencies in Ant

2020-05-18 Thread Rick Mann
> On May 18, 2020, at 21:15 , Davide Grandi wrote: > > Just my 2 Euro cent: > - there's an address hardcoded here > -- > \maven-ant-tasks-2.1.3\src\main\java\org\apache\maven\artifact\ant\AbstractArtifactWithRepositoryTask.java > (1 hit) > Line 55: remoteRepository.setUrl( >

Re: Lots of problems resolving maven dependencies in Ant

2020-05-18 Thread Davide Grandi
Just my 2 Euro cent: - there's an address hardcoded here   -- \maven-ant-tasks-2.1.3\src\main\java\org\apache\maven\artifact\ant\AbstractArtifactWithRepositoryTask.java (1 hit)   Line 55: remoteRepository.setUrl( "http://repo1.maven.org/maven2"; );   --   so :   a) recompile   b) bi

Lots of problems resolving maven dependencies in Ant

2020-05-18 Thread Rick Mann
Hi there. If anyone can help with the following, I'd sure appreciate it: • Get Ivy to set a classpath (cachepath) • Get Maven Artifact Resolver Ant Tasks installed macOS 10.15.4, Java 11 Details --- I have this really old ant-based server project I'm trying to update. It uses the org.apach