Skip to content

Latest commit

 

History

History
128 lines (85 loc) · 4.39 KB

README.md

File metadata and controls

128 lines (85 loc) · 4.39 KB

java.classpath

Examine the Java classpath from Clojure programs.

Releases and Dependency Information

Latest stable release is 0.2.2

Leiningen dependency information:

[org.clojure/java.classpath "0.2.2"]

Maven dependency information:

<dependency>
  <groupId>org.clojure</groupId>
  <artifactId>java.classpath</artifactId>
  <version>0.2.2</version>
</dependency>

Gradle dependency information:

compile "org.clojure:java.classpath:0.2.2"

Other versions:

Releases are published to the Maven Central Repository

Development SNAPSHOTs are published to the Sonatype Open-Source Repository

Usage

See the API Documentation

Examples:

(require '[clojure.java.classpath :as cp])

(cp/classpath)
;; (#<File /foo/test> #<File /foo/src> ...)

The classpath function returns a sequence of java.io.File objects representing all JAR files and directories on the classpath. It defaults to using the classpath of Clojure's base ClassLoader.

classpath also takes a ClassLoader as an optional argument.

Alternatively, the system-classpath function returns a sequence of java.io.File objects parsed from the java.class.path Java system property.

If you are using an environment which provides its own ClassLoader implementation, such as a Java application server, you can extend the protocol URLClasspath to support it. Refer to the source for details.

Change Log

  • Development version 0.2.3-SNAPSHOT, current Git master branch
  • Release 0.2.2 on 2014-Jan-10
    • Enhancement CLASSPATH-5: extensible protocol to other classloaders
  • Release 0.2.1 on 2013-Jan-18
  • Release 0.2.0 on 2011-Sep-15
  • Release 0.1.2 on 2011-Sep-06
    • Use both java.class.path and Clojure's ClassLoader
  • Release 0.1.1 on 2011-Apr-28
    • Eliminate relection
  • Release 0.1.0 on 2011-Apr-22
    • Migrated from clojure.contrib.classpath and clojure.contrib.jar in legacy clojure-contrib

Developer Information

Copyright and License

Copyright (c) 2013 Rich Hickey, Stuart Sierra, and contributors. All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.