Fork me on GitHub
#boot
<
2018-05-11
>
Mark Addleman04:05:35

I'm trying to push a jar to a private repo with the following command

boot push -r repo_name -f ~/.m2/repository/athena/jdbc/2.0.2/jdbc-2.0.2.jar -p /tmp/META-INF/maven/Athena/AthenaJDBC42/pom.xml
and i get the following error message
clojure.lang.ExceptionInfo: Multiple jar entries match: .*/pom.xml
any idea what I'm doing wrong?

alandipert17:05:50

@mark340 my guess would be jdbc-2.0.2.jar already contains a pom.xml

Alex Miller (Clojure team)17:05:21

what the error sounds like is that the jar contains more than one pom.xml

Alex Miller (Clojure team)17:05:42

or maybe that’s encapsulated by what you’re saying already

Alex Miller (Clojure team)17:05:01

most Maven artifacts already have an embedded pom.xml

Mark Addleman19:05:48

Ah, thanks. I ended up uploading the third-party jar to our repo manually.