tools-deps

Discuss tools.deps.alpha, tools.build, and the clj/clojure command-line scripts! See also #depstar #clj-new
kirill.salykin 2020-09-14T09:59:16.238400Z

UPD: nvm, wrongly specified the maven repo, sorry --- Hi I am trying to install dependency from the s3 but facing the issue:

Error building classpath. Failed to read artifact descriptor for com.amazon.redshift:redshift-jdbc42:jar:1.2.47
org.eclipse.aether.resolution.ArtifactDescriptorException: Failed to read artifact descriptor for com.amazon.redshift:redshift-jdbc42:jar:1.2.47
	at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom(DefaultArtifactDescriptorReader.java:255)
	at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor(DefaultArtifactDescriptorReader.java:171)
	at org.eclipse.aether.internal.impl.DefaultRepositorySystem.readArtifactDescriptor(DefaultRepositorySystem.java:255)
(Following this doc https://docs.aws.amazon.com/redshift/latest/mgmt/configure-jdbc-connection.html#configure-jdbc-connection-with-maven)
{:paths ["src" "resources"]

 :mvn/repos {"redshift" "<https://s3.amazonaws.com/redshift-maven-repository/release>"}

 :deps{
    com.amazon.redshift/redshift-jdbc42 {:mvn/version "1.2.47"}
    ... 
  }}
Please help what I am doing wrong?

practicalli-john 2020-09-14T11:57:48.244800Z

@alexmiller Will the changes in the pre-release be released as version 1.10.2, or something similar such as 1.10.2-alpha or 1.10.2-RC ? This would make it very easy to document usage of the tooling, as an easy distinction can be made between 1.10.2 and pre-1.10.2 versions. Thank you

alexmiller 2020-09-14T12:34:25.245200Z

No, probably not

practicalli-john 2020-09-14T12:40:57.247900Z

Ah, so I'll just drop the older content then and add hints to require the latest version is running. If issues arise the the hint will be first to update the version of CLI tools. Thanks

unbalanced 2020-09-14T17:44:05.248700Z

struggling with a proxy just trying to get clj -r going

unbalanced 2020-09-14T17:45:09.249700Z

I've tried setting the settings in ~/.m2/settings.xml and running

clj -Dhttp.proxyHost=&lt;host&gt; -Dhttp.proxyPort=&lt;port&gt; -Dhttps.proxyHost=&lt;host&gt; -Dhttps.proxyPort=&lt;port&gt; -r

unbalanced 2020-09-14T17:45:22.249900Z

any suggestions?

borkdude 2020-09-14T18:08:01.250300Z

@goomba You need to pass Java opts using -J-D

unbalanced 2020-09-14T18:14:06.250500Z

ahhhhh

unbalanced 2020-09-14T18:14:13.250700Z

🙏