forked from laurentpetit/paredit.clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
123 lines (112 loc) · 5.65 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.lpetit</groupId>
<artifactId>paredit.clj</artifactId>
<packaging>eclipse-plugin</packaging>
<version>0.17.0.STABLE001</version>
<name>Paredit.clj</name>
<description>paredit in clojure, tailored for clojure</description>
<url>https://github.com/laurentpetit/paredit.clj</url>
<scm>
<url>https://github.com/laurentpetit/paredit.clj</url>
<connection>scm:git:git://github.com/laurentpetit/paredit.clj</connection>
<developerConnection>scm:git:ssh://[email protected]/laurentpetit/paredit.clj</developerConnection>
</scm>
<properties>
<tycho.version>0.10.0</tycho.version>
<clojure.maven.plugin.version>1.3.2</clojure.maven.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<resolver>p2</resolver>
<pomDependencies>consider</pomDependencies>
</configuration>
</plugin>
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>${clojure.maven.plugin.version}</version>
<configuration>
<sourceDirectories>
<sourceDirectory>src</sourceDirectory>
</sourceDirectories>
<namespaces>
<namespace>paredit.core</namespace>
</namespaces>
<compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
<!-- To take advantage of the compilers syntax checking,
but wish to prevent any AOT classes from appearing
in the maven generated JAR file -->
<temporaryOutputDirectory>true</temporaryOutputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.lpetit</groupId>
<artifactId>net.cgrand.parsley</artifactId>
<version>0.0.9.STABLE001</version>
</dependency>
<dependency>
<groupId>org.lpetit</groupId>
<artifactId>net.cgrand.regex</artifactId>
<version>0.0.3.STABLE01</version>
</dependency>
</dependencies>
<licenses>
<license>
<name>Eclipse Public License 1.0</name>
<url>http://opensource.org/licenses/eclipse-1.0.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<!--distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>clojars.org</id>
<name>Clojars</name>
<url>http://clojars.org/repo</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<uniqueVersion>true</uniqueVersion>
<id>clojars.org</id>
<name>Clojars</name>
<url>http://clojars.org/repo</url>
<layout>default</layout>
</snapshotRepository>
</distributionManagement-->
<repositories>
<repository>
<id>clojars.org</id>
<layout>default</layout>
<url>http://clojars.org/repo/</url>
</repository>
<repository>
<id>ccw</id>
<layout>p2</layout>
<url>http://updatesite.counterclockwise.googlecode.com/hg/</url>
</repository>
</repositories>
</project>