From 9f453fc596164287d6858c816d28885799767008 Mon Sep 17 00:00:00 2001 From: Stuart Sierra Date: Sat, 16 Feb 2013 16:17:18 -0500 Subject: [PATCH] CLJ-1161: Remove version.properties from 'sources' JAR The normal Clojure JAR contains a version.properties file with the correct version number filled in during the build. Before this patch, the '-sources' JAR also included a version.properties file in its raw form. IDEs and other tools which include the '-sources' JAR on the classpath can prevent Clojure from starting. This patch filters the version.properties file out of the '-sources' JAR. --- pom.xml | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index be85dbf..4d0c933 100644 --- a/pom.xml +++ b/pom.xml @@ -176,6 +176,11 @@ jar + + + clojure/version.properties + + -- 1.7.7.4