Skip to content

Commit 6b1c479

Browse files
authored
Generate POM file (#59)
* Add pom.xml * Add license + distributionManagement
1 parent 9cb4c4a commit 6b1c479

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/target
22
/classes
33
/checkouts
4-
pom.xml
54
pom.xml.asc
65
*.jar
76
*.class

pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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>honeysql-postgres</groupId>
6+
<artifactId>honeysql-postgres</artifactId>
7+
<version>0.2.6</version>
8+
<name>honeysql-postgres</name>
9+
<description>PostgreSQL extension for honeysql</description>
10+
<url>https://github.com/nilenso/honeysql-postgres</url>
11+
<licenses>
12+
<license>
13+
<name>Eclipse Public License</name>
14+
<url>http://www.eclipse.org/legal/epl-v10.html</url>
15+
</license>
16+
</licenses>
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.clojure</groupId>
20+
<artifactId>clojure</artifactId>
21+
<version>1.10.2</version>
22+
</dependency>
23+
<dependency>
24+
<groupId>honeysql</groupId>
25+
<artifactId>honeysql</artifactId>
26+
<version>0.9.5</version>
27+
<exclusions>
28+
<exclusion>
29+
<groupId>org.clojure</groupId>
30+
<artifactId>clojurescript</artifactId>
31+
</exclusion>
32+
</exclusions>
33+
</dependency>
34+
</dependencies>
35+
<build>
36+
<sourceDirectory>src</sourceDirectory>
37+
</build>
38+
<repositories>
39+
<repository>
40+
<id>clojars</id>
41+
<url>https://repo.clojars.org/</url>
42+
</repository>
43+
</repositories>
44+
<distributionManagement>
45+
<repository>
46+
<id>clojars</id>
47+
<name>Clojars repository</name>
48+
<url>https://clojars.org/repo</url>
49+
</repository>
50+
</distributionManagement>
51+
</project>

0 commit comments

Comments
 (0)