forked from malcolmsparks/clj-logging-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
73 lines (62 loc) · 1.93 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>clj-logging-config</groupId>
<artifactId>clj-logging-config</artifactId>
<version>1.9.8</version>
<name>${project.artifactId}</name>
<url>https://github.com/malcolmsparks/clj-logging-config</url>
<developers>
<developer>
<name>Malcolm Sparks</name>
<email>malcolm@congreve.com</email>
<url>http://blog.malcolmsparks.com</url>
<timezone>London/Europe</timezone>
</developer>
</developers>
<parent>
<groupId>org.clojure</groupId>
<artifactId>pom.contrib</artifactId>
<version>0.0.25</version>
</parent>
<repositories>
<repository>
<id>clojars</id>
<url>http://clojars.org/repo/</url>
</repository>
</repositories>
<scm>
<connection>scm:git:git@github.com:malcolmsparks/clj-logging-config.git</connection>
<developerConnection>scm:git:git@github.com:malcolmsparks/clj-logging-config.git</developerConnection>
<url>git@github.com:malcolmsparks/clj-logging-config.git</url>
</scm>
<properties>
<clojure.version>1.2.0</clojure.version>
</properties>
<build>
<!-- We only need this because the default clojure-maven-plugin
version as inherited from org.clojure/pom.contrib/0.0.25 is
1.3.7 which is not compatible with clojure-swank/1.3.2 -
there is an incompatibity in the args given when launching
swank -->
<plugins>
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.3.8</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.logging</artifactId>
<version>0.2.3</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
</dependencies>
</project>