This repository has been archived by the owner on Feb 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
108 lines (104 loc) · 3.7 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>core.typed.cljs</artifactId>
<description>An optional type system for ClojureScript — full system for annotating and type-checking.</description>
<name>core.typed.cljs</name>
<parent>
<groupId>org.clojure</groupId>
<artifactId>core.typed-pom</artifactId>
<version>0.5.4-SNAPSHOT</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.7.1</version>
<executions>
<execution>
<id>clojure-compile</id>
<phase>compile</phase>
</execution>
<execution>
<id>clojure-test</id>
<phase>test</phase>
</execution>
</executions>
<configuration>
<vmargs>-Xmx2048m</vmargs>
<compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
<testDeclaredNamespaceOnly>true</testDeclaredNamespaceOnly>
<!-- Don't put AOT files in jar -->
<temporaryOutputDirectory>false</temporaryOutputDirectory>
<warnOnReflection>true</warnOnReflection>
<namespaces>
<namespace>!clojure.core.typed.util-cljs</namespace>
<namespace>!clojure.core.typed.test.cljs</namespace>
<namespace>!cljs.core.typed.*</namespace>
<namespace>!clojure.core.typed.base-env-cljs</namespace>
<namespace>!clojure.core.typed.check-form-cljs</namespace>
<namespace>!clojure.core.typed.check-ns-cljs</namespace>
<namespace>!clojure.core.typed.test.cljs-utils</namespace>
</namespaces>
<testNamespaces>
<namespace>clojure.core.typed.test.*</namespace>
</testNamespaces>
<sourceDirectories>
<sourceDirectory>src/main/clojure</sourceDirectory>
<sourceDirectory>src/main/cljs</sourceDirectory>
</sourceDirectories>
<testDirectories>
<testDirectory>src/test/clojure</testDirectory>
<testDirectory>src/test/cljs</testDirectory>
</testDirectories>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>core-typed-slim-jar</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<descriptors>
<descriptor>src/assembly/slim.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>-->
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>core.typed</artifactId>
<version>0.5.4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.10.373</version>
</dependency>
</dependencies>
</project>