forked from clojure/spec-alpha2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
112 lines (105 loc) · 3.57 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
<?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">
<modelVersion>4.0.0</modelVersion>
<artifactId>alpha.spec</artifactId>
<version>0.2.177-SNAPSHOT</version>
<name>alpha.spec</name>
<description>Specification of data and functions</description>
<scm>
<connection>scm:git:git://github.com/clojure/spec-alpha2.git</connection>
<developerConnection>scm:git:ssh://[email protected]/clojure/spec-alpha2.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/clojure/spec-alpha2</url>
</scm>
<licenses>
<license>
<name>Eclipse Public License 1.0</name>
<url>http://opensource.org/licenses/eclipse-1.0.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<parent>
<groupId>org.clojure</groupId>
<artifactId>pom.contrib</artifactId>
<version>1.1.0</version>
</parent>
<developers>
<developer>
<id>richhickey</id>
<name>Rich Hickey</name>
<url>http://clojure.org</url>
</developer>
</developers>
<properties>
<clojure.version>1.10.0</clojure.version>
</properties>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>${clojure.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>test.check</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>compile-clojure</id>
<phase>compile</phase>
<goals><goal>exec</goal></goals>
<configuration>
<executable>java</executable>
<classpathScope>compile</classpathScope>
<arguments>
<argument>-Dclojure.compile.path=${project.build.directory}/classes</argument>
<argument>-Dclojure.spec.skip-macros=true</argument>
<argument>-classpath</argument>
<classpath />
<argument>clojure.lang.Compile</argument>
<argument>clojure.alpha.spec.protocols</argument>
<argument>clojure.alpha.spec</argument>
<argument>clojure.alpha.spec.impl</argument>
<argument>clojure.alpha.spec.gen</argument>
<argument>clojure.alpha.spec.test</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.7.1</version>
<executions>
<execution>
<id>clojure-compile</id>
<phase>none</phase>
</execution>
<execution>
<id>clojure-test</id>
<phase>test</phase>
</execution>
</executions>
<configuration>
<sourceDirectories>
<sourceDirectory>src/main/clojure</sourceDirectory>
</sourceDirectories>
<testSourceDirectories>
<testSourceDirectory>src/test/clojure</testSourceDirectory>
</testSourceDirectories>
</configuration>
</plugin>
</plugins>
</build>
</project>