hellonico / origami

Lowest barrier of entry to Image Processing, Computer Vision and Neural Networks on the JavaVM
https://hellonico.github.io/origami-docs/#/
Eclipse Public License 1.0
122 stars 7 forks source link

Deploy jars to clojars #21

Closed hellonico closed 5 years ago

hellonico commented 5 years ago

I just found out today that it is possible to push non-clojure jars to clojars using the info from: https://github.com/clojars/clojars-web/issues/253 or something like:

lein deploy clojars de.uni-koblenz.ist/jgralab 0.1.1 jgralab.jar pom.xml
hellonico commented 5 years ago

Could upload main opencv jar to clojars: http://clojars.org/opencv

But not the opencv native one, because of its size.

Sent an email to the clojars maintainer mailing list and added to the ticket: https://github.com/clojars/clojars-web/issues/195#issuecomment-477448559

hellonico commented 5 years ago

Upload status:

- opencv (done)
- opencv-native (trying)

- origami (easy)
- hellonico/gorilla-repl (easy)
- hellonico/lein-gorilla (easy)
hellonico commented 5 years ago

Finally ! https://clojars.org/origami

Just discovered the opencv jars actually do not need to be on clojars. The uploaded pom.xml file has a reference to repository.hellonico.info

    <repository>
      <id>vendredi</id>
      <url>https://repository.hellonico.info/repository/hellonico/</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <releases>
        <enabled>true</enabled>
      </releases>
    </repository>

and this tells maven, and others to retrieve the file from there without specifying from a user point of view.