summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml45
1 files changed, 27 insertions, 18 deletions
diff --git a/pom.xml b/pom.xml
index 926316da..33057bca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,22 +1,31 @@
<?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.clojure</groupId>
- <artifactId>clojure-lang</artifactId>
- <name>clojure-lang</name>
- <version>1.0-SNAPSHOT</version>
- <url>http://clojure.org/</url>
-
- <description>Clojure core environment and runtime library.</description>
-
- <licenses>
- <license>
- <name>Eclipse Public License 1.0</name>
- <url>http://opensource.org/licenses/eclipse-1.0.php</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
-
+ 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>
+ <name>clojure-lang</name>
+ <version>1.0-SNAPSHOT</version>
+ <url>http://clojure.org/</url>
+ <build>
+ <sourceDirectory>src/jvm</sourceDirectory>
+ <scriptSourceDirectory>src/clj</scriptSourceDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <optimize>true</optimize>
+ </configuration>
+ </plugin>
+ </plugins>
+ <resources>
+ <resource>
+ <directory>src/clj/</directory>
+ </resource>
+ </resources>
+ </build>
</project> \ No newline at end of file