diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-01-31 17:09:51 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-01-31 17:09:51 +0000 |
commit | 3ebe1b7f334596320f0ce43ce99c51ef241dea85 (patch) | |
tree | d899e879757b17111e05ef80cbaf709e244b8f64 | |
parent | e0d36eb1e7d29892a46ed48c5c44ba8046e33571 (diff) |
simplified, now includes .clj files in jar
-rw-r--r-- | pom.xml | 30 |
1 files changed, 10 insertions, 20 deletions
@@ -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 |