|
| 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