mattyb149 / clojure-jsr223

Automatically exported from code.google.com/p/clojure-jsr223
0 stars 0 forks source link

Is clojure-jsr223 available in Maven? #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Just wondering ...

Original issue reported on code.google.com by Paul.Kin...@gmail.com on 1 May 2010 at 12:42

GoogleCodeExporter commented 8 years ago
Just a point of clarification, I am wondering if the jar is available via a 
publicly
accessible Maven repo (ideally the central repo but any repo as a first step 
would be
good) - I am not thinking about a Maven plugin.

Original comment by Paul.Kin...@gmail.com on 1 May 2010 at 12:46

GoogleCodeExporter commented 8 years ago
No, not yet. I've come to learn and use Maven only until recently with simple 
projects. Taking this up and building and publishing this jar with Maven will 
sure 
get me in better shape with this tool. Let's see how it goes.

Original comment by abm221...@gmail.com on 2 May 2010 at 12:20

GoogleCodeExporter commented 8 years ago

Original comment by abm221...@gmail.com on 2 May 2010 at 12:36

GoogleCodeExporter commented 8 years ago
Sorry for the delay. Have had a bunch to stuff to deal with in and out of work. 
It's 
a goal of mine to have this used from Maven projects and also to build this 
little 
lib using Maven as well.

Original comment by abm221...@gmail.com on 1 Jun 2010 at 3:45

GoogleCodeExporter commented 8 years ago
hi there, i took the pleasure of uploading your script engine implementation 
onto the clojars.org/repo maven repository.  the pom dependency to use is:

  <dependency>
    <groupId>clojure-jsr223</groupId>
    <artifactId>clojure-jsr223</artifactId>
    <version>1.0</version>
  </dependency>

should you not have clojars.org/repo configured as a maven repository in your 
configuration, you could do so in the pom of your project in the <repositories> 
section:

  <repositories>
    <repository>
      <id>clojars</id>
      <url>http://clojars.org/repo/</url>
    </repository>
  </repositories>

enjoy, and thanks for the work

Matthias

Original comment by schlafbo...@gmail.com on 30 Oct 2010 at 5:52

GoogleCodeExporter commented 8 years ago
Well done, Matthias. I hope it can be of any help out there.

Original comment by abm221...@gmail.com on 30 Oct 2010 at 8:38

GoogleCodeExporter commented 8 years ago
Closing this since the jar made it to Clojars.

Original comment by abm221...@gmail.com on 7 Dec 2010 at 9:24

GoogleCodeExporter commented 8 years ago
Hi Armando,

I just updated the script engine on clojars.org/repo.

The steps were:

checkout http://clojure-jsr223.googlecode.com/svn/trunk

the revision number here is 6.

type 'ant' at the shell.

publish the file build/jar/clojure-jsr223.jar as version 1.2 on clojars.

I hope this is correct, particularly I hope that svn r6 is suitable for being 
called version 1.2 and I am guessing right that what was built under 
build/jar/cl...jar is the correct build output artifact.

Kind Regards,
Matthias

Original comment by schlafbo...@gmail.com on 22 Jan 2011 at 8:09

GoogleCodeExporter commented 8 years ago
Matthias, thanks for taking care of that.

I recently tested the latest code with Clojure 1.2. You should be able to query 
for any vars from any used-defined namespace. The lib will now collect all 
bindings done in scripts. The other current issues are complicated because of 
CLJ being compiled and the 223 APIs were done for interpreters. 

Original comment by abm221...@gmail.com on 23 Jan 2011 at 12:30