Skip to content

Commit b255010

Browse files
committed
Fixed up project files.
1 parent 14a3cd8 commit b255010

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

pom.xml

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,40 @@
11
<project>
22
<modelVersion>4.0.0</modelVersion>
3+
34
<groupId>org.blancas</groupId>
45
<artifactId>tinypost</artifactId>
56
<packaging>jar</packaging>
67
<version>0.1.0</version>
7-
<name>Tiny Postscript</name>
8+
<name>Tiny PostScript</name>
9+
<description>A tiny PostScript interpreter</description>
10+
11+
<url>https://github.com/blancas/tinypost</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<developers>
18+
<developer>
19+
<name>Armando Blancas</name>
20+
<email>[email protected]</email>
21+
<timezone>-8</timezone>
22+
</developer>
23+
</developers>
24+
25+
<scm>
26+
<connection>scm:git:[email protected]:blancas/tinypost.git</connection>
27+
<developerConnection>scm:git:[email protected]:blancas/tinypost.git</developerConnection>
28+
<url>[email protected]:blancas/tinypost.git</url>
29+
</scm>
30+
31+
<licenses>
32+
<license>
33+
<name>Eclipse Public License 1.0</name>
34+
<url>http://opensource.org/licenses/eclipse-1.0.php</url>
35+
<distribution>repo</distribution>
36+
</license>
37+
</licenses>
838

939
<dependencies>
1040
<dependency>
@@ -16,7 +46,7 @@
1646
<dependency>
1747
<groupId>org.clojure</groupId>
1848
<artifactId>clojure</artifactId>
19-
<version>1.4.0</version>
49+
<version>1.5.1</version>
2050
</dependency>
2151
<dependency>
2252
<groupId>org.antlr</groupId>

project.clj

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
(defproject org.blancas/tinypost "0.1.0"
2+
:description "A tiny PostScript interpreter"
3+
:license {:name "Eclipse Public License"
4+
:url "http://www.eclipse.org/legal/epl-v10.html"}
5+
:url "https://github.com/blancas/tinypost"
6+
:dependencies [[org.clojure/clojure "1.5.1"]]
7+
:source-paths ["src/main/clojure"]
8+
:test-paths ["src/test/clojure"]
9+
:jvm-opts ["-Dfile.encoding=UTF-8"]
10+
:profiles
11+
{:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
12+
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
13+
:1.5 {:dependencies [[org.clojure/clojure "1.5.0"]]}
14+
:dev {:resource-paths ["src/main/resources" "src/test/resources"]
15+
:dependencies [[midje "1.5.0" :exclusions [org.clojure/clojure]]]
16+
:plugins [[codox "0.6.4"]]
17+
:codox {:sources ["src/main/clojure"] :output-dir "codox"}}})

0 commit comments

Comments
 (0)