summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2008-01-31 17:09:51 +0000
committerRich Hickey <richhickey@gmail.com>2008-01-31 17:09:51 +0000
commit3ebe1b7f334596320f0ce43ce99c51ef241dea85 (patch)
treed899e879757b17111e05ef80cbaf709e244b8f64
parente0d36eb1e7d29892a46ed48c5c44ba8046e33571 (diff)
simplified, now includes .clj files in jar
-rw-r--r--pom.xml30
1 files changed, 10 insertions, 20 deletions
diff --git a/pom.xml b/pom.xml
index 2d380bcd..65e3c526 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http//www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http//www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>jvm.clojure</groupId>
<artifactId>clojure-lang</artifactId>
@@ -20,22 +21,11 @@
<optimize>true</optimize>
</configuration>
</plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
</plugins>
+ <resources>
+ <resource>
+ <directory>src/</directory>
+ </resource>
+ </resources>
</build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>asm</groupId>
- <artifactId>asm</artifactId>
- <version>3.0</version>
- </dependency>
- </dependencies>
-</project>
+</project> \ No newline at end of file