Skip to content

Instantly share code, notes, and snippets.

@stuartsierra
Created November 26, 2010 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartsierra/716954 to your computer and use it in GitHub Desktop.
Save stuartsierra/716954 to your computer and use it in GitHub Desktop.
Local clojure.jar build profiles
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>${clojure.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>local-clojure-dep</id>
<activation>
<property>
<name>clojure.jar</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>LOCALJAR</version>
<scope>system</scope>
<systemPath>${clojure.jar}</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment