Another attempt to satisfy cljdoc

This commit is contained in:
Sean Corfield 2019-04-21 00:04:04 -07:00
parent d0afa3f8a6
commit 8564674653
2 changed files with 6 additions and 6 deletions

View file

@ -9,12 +9,12 @@ It is designed to work with Clojure 1.10 or later, supports `datafy`/`nav`, and
You can add `next.jdbc` to your project with either: You can add `next.jdbc` to your project with either:
```clojure ```clojure
{next.jdbc {:mvn/version "1.0.0-alpha2"}} {next.jdbc {:mvn/version "1.0.0-alpha3"}}
``` ```
for `deps.edn` or: for `deps.edn` or:
```clojure ```clojure
[next.jdbc "1.0.0-alpha2"] [next.jdbc "1.0.0-alpha3"]
``` ```
for `project.clj` or `build.boot`. for `project.clj` or `build.boot`.
@ -29,7 +29,7 @@ For the examples in this documentation, we will use a local H2 database on disk,
```clojure ```clojure
;; deps.edn ;; deps.edn
{:deps {org.clojure/clojure {:mvn/version "1.10.0"} {:deps {org.clojure/clojure {:mvn/version "1.10.0"}
next.jdbc {:mvn/version "1.0.0-alpha2"} next.jdbc {:mvn/version "1.0.0-alpha3"}
com.h2database/h2 {:mvn/version "1.4.197"}}} com.h2database/h2 {:mvn/version "1.4.197"}}}
``` ```

View file

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>seancorfield</groupId> <groupId>seancorfield</groupId>
<artifactId>next.jdbc</artifactId> <artifactId>next.jdbc</artifactId>
<version>1.0.0-alpha2</version> <version>1.0.0-alpha3</version>
<name>next.jdbc</name> <name>next.jdbc</name>
<description>The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.</description> <description>The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.</description>
@ -22,9 +22,9 @@
</developers> </developers>
<scm> <scm>
<connection>scm:git:git://github.com/seancorfield/next-jdbc.git</connection> <connection>scm:git:git@github.com:seancorfield/next-jdbc.git</connection>
<developerConnection>scm:git:git@github.com:seancorfield/next-jdbc.git</developerConnection> <developerConnection>scm:git:git@github.com:seancorfield/next-jdbc.git</developerConnection>
<url>https://github.com/seancorfield/next-jdbc</url> <url>git@github.com:seancorfield/next-jdbc.git</url>
<tag>cba8ee7230ad09f173499fdee7e5de6ae4f1eb00</tag> <tag>cba8ee7230ad09f173499fdee7e5de6ae4f1eb00</tag>
</scm> </scm>