forked from clojure/data.xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
45 lines (42 loc) · 1.47 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
<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>
<artifactId>data.xml</artifactId>
<version>0.0.8-SNAPSHOT</version>
<name>data.xml</name>
<packaging>jar</packaging>
<description>Functions to parse XML into lazy sequences and lazy trees and emit these as text</description>
<developers>
<developer>
<name>Chouser</name>
<email>[email protected]</email>
<url>http://chouser.n01se.net</url>
<timezone>-5</timezone>
</developer>
<developer>
<name>Alan Malloy</name>
<email>[email protected]</email>
<timezone>-8</timezone>
</developer>
<developer>
<name>Ryan Senior</name>
<email>[email protected]</email>
<timezone>-6</timezone>
</developer>
</developers>
<parent>
<groupId>org.clojure</groupId>
<artifactId>pom.contrib</artifactId>
<version>0.0.25</version>
</parent>
<scm>
<connection>scm:git:[email protected]:clojure/data.xml.git</connection>
<developerConnection>scm:git:[email protected]:clojure/data.xml.git</developerConnection>
<url>[email protected]:clojure/data.xml.git</url>
</scm>
<repositories>
<repository>
<id>sonatype-oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>