Skip to content

Commit 49b0cec

Browse files
committed
add pom
1 parent e695036 commit 49b0cec

2 files changed

Lines changed: 46 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
pom.xml
21
pom.xml.asc
32
*.jar
43
*.class

pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<packaging>jar</packaging>
5+
<groupId>re-codemirror</groupId>
6+
<artifactId>re-codemirror</artifactId>
7+
<version>0.0.1</version>
8+
<name>re-codemirror</name>
9+
<dependencies>
10+
<dependency>
11+
<groupId>org.clojure</groupId>
12+
<artifactId>clojure</artifactId>
13+
<version>1.11.1</version>
14+
</dependency>
15+
<dependency>
16+
<groupId>org.clojure</groupId>
17+
<artifactId>clojurescript</artifactId>
18+
<version>1.10.773</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>reagent</groupId>
22+
<artifactId>reagent</artifactId>
23+
<version>1.1.0</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>cljsjs</groupId>
27+
<artifactId>codemirror</artifactId>
28+
<version>5.44.0-1</version>
29+
</dependency>
30+
</dependencies>
31+
<build>
32+
<sourceDirectory>src/cljs</sourceDirectory>
33+
</build>
34+
<repositories>
35+
<repository>
36+
<id>clojars</id>
37+
<url>https://repo.clojars.org/</url>
38+
</repository>
39+
</repositories>
40+
<licenses>
41+
<license>
42+
<name>Apache-2.0</name>
43+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
44+
</license>
45+
</licenses>
46+
</project>

0 commit comments

Comments
 (0)