0 | |
<?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/xsd/maven-4.0.0.xsd">
|
1 | |
<modelVersion>4.0.0</modelVersion>
|
2 | |
<parent>
|
3 | |
<artifactId>pom.contrib</artifactId>
|
4 | |
<groupId>org.clojure</groupId>
|
5 | |
<version>0.1.2</version>
|
6 | |
<relativePath/>
|
7 | |
</parent>
|
8 | |
<groupId>org.clojure</groupId>
|
9 | |
<artifactId>core.async</artifactId>
|
10 | |
<packaging>jar</packaging>
|
11 | |
<version>0.1.0-SNAPSHOT</version>
|
12 | |
<name>core.async</name>
|
13 | |
<description>Facilities for async programming and communication in Clojure</description>
|
14 | |
<url>https://github.com/clojure/core.async</url>
|
15 | |
<licenses>
|
16 | |
<license>
|
17 | |
<name>Eclipse Public License</name>
|
18 | |
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
19 | |
</license>
|
20 | |
</licenses>
|
21 | |
<scm>
|
22 | |
<tag>cfd95c6814f5051136dcc8f974ddbfe7d028c109
|
23 | |
</tag>
|
24 | |
<url/>
|
25 | |
</scm>
|
26 | |
<build>
|
27 | |
<sourceDirectory>src/main/clojure</sourceDirectory>
|
28 | |
<testSourceDirectory>src/test/clojure</testSourceDirectory>
|
29 | |
<resources>
|
30 | |
<resource>
|
31 | |
<directory>resources</directory>
|
32 | |
</resource>
|
33 | |
</resources>
|
34 | |
<testResources>
|
35 | |
<testResource>
|
36 | |
<directory>resources</directory>
|
37 | |
</testResource>
|
38 | |
</testResources>
|
39 | |
<directory>target</directory>
|
40 | |
<outputDirectory>target/classes</outputDirectory>
|
41 | |
<plugins>
|
42 | |
<plugin>
|
43 | |
<groupId>org.codehaus.mojo</groupId>
|
44 | |
<artifactId>build-helper-maven-plugin</artifactId>
|
45 | |
<version>1.7</version>
|
46 | |
<executions>
|
47 | |
<execution>
|
48 | |
<id>add-source</id>
|
49 | |
<phase>generate-sources</phase>
|
50 | |
<goals>
|
51 | |
<goal>add-source</goal>
|
52 | |
</goals>
|
53 | |
<configuration>
|
54 | |
<sources>
|
55 | |
<source>src/main/java</source>
|
56 | |
</sources>
|
57 | |
</configuration>
|
58 | |
</execution>
|
59 | |
</executions>
|
60 | |
</plugin>
|
61 | |
</plugins>
|
62 | |
</build>
|
63 | |
<repositories>
|
64 | |
<repository>
|
65 | |
<id>central</id>
|
66 | |
<url>https://repo1.maven.org/maven2/</url>
|
67 | |
<snapshots>
|
68 | |
<enabled>false</enabled>
|
69 | |
</snapshots>
|
70 | |
<releases>
|
71 | |
<enabled>true</enabled>
|
72 | |
</releases>
|
73 | |
</repository>
|
74 | |
<repository>
|
75 | |
<id>clojars</id>
|
76 | |
<url>https://clojars.org/repo/</url>
|
77 | |
<snapshots>
|
78 | |
<enabled>true</enabled>
|
79 | |
</snapshots>
|
80 | |
<releases>
|
81 | |
<enabled>true</enabled>
|
82 | |
</releases>
|
83 | |
</repository>
|
84 | |
</repositories>
|
85 | |
<dependencyManagement>
|
86 | |
<dependencies/>
|
87 | |
</dependencyManagement>
|
88 | |
<dependencies>
|
89 | |
<dependency>
|
90 | |
<groupId>org.clojure</groupId>
|
91 | |
<artifactId>clojure</artifactId>
|
92 | |
<version>1.7.0</version>
|
93 | |
</dependency>
|
94 | |
<dependency>
|
95 | |
<groupId>org.clojure</groupId>
|
96 | |
<artifactId>tools.analyzer.jvm</artifactId>
|
97 | |
<version>0.6.10</version>
|
98 | |
</dependency>
|
99 | |
<dependency>
|
100 | |
<groupId>org.clojure</groupId>
|
101 | |
<artifactId>clojurescript</artifactId>
|
102 | |
<version>1.7.170</version>
|
103 | |
<scope>provided</scope>
|
104 | |
</dependency>
|
105 | |
</dependencies>
|
106 | |
</project>
|
107 | |
|
108 | |
<!-- This file was autogenerated by Leiningen.
|
109 | |
Please do not edit it directly; instead edit project.clj and regenerate it.
|
110 | |
It should not be considered canonical data. For more information see
|
111 | |
https://github.com/technomancy/leiningen -->
|