Skip to content

Commit

Permalink
Allow apps to specify a clojure beta/alpha/etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias committed Nov 29, 2012
1 parent 677a291 commit 89b7b39
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -74,7 +74,7 @@ public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitPro
boolean clojureProvided = false;

for (File each : dependencyJars) {
if (each.getName().matches( "^clojure(-\\d.\\d.\\d)?\\.jar$" )) {
if (each.getName().matches( "^clojure(-\\d.\\d.\\d)?.*\\.jar$" )) {
clojureProvided = true;
}
mounter.mount( each );
Expand Down

0 comments on commit 89b7b39

Please sign in to comment.