Hi all
I have this code
{:path ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/java.jdbc {:mvn/version "0.7.12"}
mysql/mysql-connector-java {:mvn/version "8.0.30"}}}
Import changes work.
But if I try to change the mysql-connector-java to any versions higher than 8.0.30, it will throw an error.
{:path ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/java.jdbc {:mvn/version "0.7.12"}
mysql/mysql-connector-java {:mvn/version "8.0.33"}}}
The error - Could not find artifact mysql:mysql-connector-java:jar:8.0.33 in central (https://repo1.maven.org/maven2/)
If I use the version 8.0.30, it’s released on 25th July, 2022.
Does this mean I can’t use latest libraries from maven?
Could this be affected by “this artifact was moved”? https://mvnrepository.com/artifact/mysql/mysql-connector-java
That makes sense, so far import seems to work, thanks again.
That’s great, cheers