Re: Creating a new library

2010-10-13 Thread Vilson Vieira
Thank you guys about all the valuable answers. I've pushed the jars to Clojars on my group [1] and updated the wiki with a simple tutorial on how to create a POM to non-clojure jars [2]. All the best. [1] http://clojars.org/groups/org.clojars.automata [2] http://github.com/ato/clojars-web/wiki/P

Re: Creating a new library

2010-10-13 Thread lprefontaine
I need a new pair of eyes... Saul Hazledine wrote .. > On Oct 13, 1:21 pm, lprefonta...@softaddicts.ca wrote: > > Good to know... is this written somewhere ? I looked at Clojars yesterday > > but did not find anything... > > > > Its mentioned near the end of the tutorial: > http://github.com/a

Re: Creating a new library

2010-10-13 Thread Meikel Brandmeyer
Hi, On 13 Okt., 07:59, Saul Hazledine wrote: > As I understand it, its fine to put jars from other projects on > Clojars. If you do this, it is recommended to use your own groupid or > org.clojars. as the groupid. That way people know that > the jar files aren't from the originating team. If the

Re: Creating a new library

2010-10-13 Thread Saul Hazledine
On Oct 13, 1:21 pm, lprefonta...@softaddicts.ca wrote: > Good to know... is this written somewhere ? I looked at Clojars yesterday > but did not find anything... > Its mentioned near the end of the tutorial: http://github.com/ato/clojars-web/wiki/tutorial Saul -- You received this message bec

Re: Creating a new library

2010-10-13 Thread lprefontaine
Good to know... is this written somewhere ? I looked at Clojars yesterday but did not find anything... Luc P. Saul Hazledine wrote .. > On Oct 13, 5:31 am, lprefonta...@softaddicts.ca wrote: > > As far a publishing to Clojars, I do not know the policy. > > Uploading various jars maintained by ot

Re: Creating a new library

2010-10-12 Thread Saul Hazledine
On Oct 13, 5:31 am, lprefonta...@softaddicts.ca wrote: > As far a publishing to Clojars, I do not know the policy. > Uploading various jars maintained by other teams not involved in > Clojure may "pollute" the repo along the way. > As I understand it, its fine to put jars from other projects on Cl

Re: Creating a new library

2010-10-12 Thread lprefontaine
Normally the people maintaining the Minim project should publish their stuff in a maven public repo. There are the ones in control of their releases. As far a publishing to Clojars, I do not know the policy. Uploading various jars maintained by other teams not involved in Clojure may "pollute" the

Re: Creating a new library

2010-10-12 Thread Nurullah Akkaya
For each non-clojure jar file you have, you need to create a pom.xml file using the instructions here, http://github.com/ato/clojars-web/wiki/POM and scp the pom file and the jar to clojars, then you can include them in your project.clj. So if Minim.jar depends on A.jar, B.jar, upload A.jar and

Re: Creating a new library

2010-10-12 Thread Vilson Vieira
2010/10/12 > a) Assuming all the dependencies are published in a maven repo out there: > > If you put all your deps in project.clj, the pom.xml file generated by > leiningen will reference all of them as dependencies to your own lib. > You only need to publish your own library and the pom.xml

Re: Creating a new library

2010-10-12 Thread lprefontaine
a) Assuming all the dependencies are published in a maven repo out there: If you put all your deps in project.clj, the pom.xml file generated by leiningen will reference all of them as dependencies to your own lib. You only need to publish your own library and the pom.xml to Clojars. Anyo

Creating a new library

2010-10-12 Thread Vilson Vieira
Hello, I want to create a Clojure wrapper for Minim and push to clojars. So I have a bunch of jar files from Minim as deps and I want to put them on my lib/. How can I add a non-clojure jar file on my lein project? Or I need to create a specific lein project for every jar? Like there's a process