Fix artifact name in the docs! Doh!
This commit is contained in:
parent
f4eefbaeac
commit
afb62a2884
2 changed files with 4 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
# next.jdbc
|
# Contributing to `next.jdbc`
|
||||||
|
|
||||||
The next generation of [`clojure.java.jdbc`](https://github.com/clojure/java.jdbc)
|
The next generation of [`clojure.java.jdbc`](https://github.com/clojure/java.jdbc)
|
||||||
is *still not accepting contributions* because it I have not yet decided
|
is *still not accepting contributions* because it I have not yet decided
|
||||||
|
|
|
||||||
|
|
@ -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-alpha7"}}
|
{seancorfield/next.jdbc {:mvn/version "1.0.0-alpha7"}}
|
||||||
```
|
```
|
||||||
for `deps.edn` or:
|
for `deps.edn` or:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[next.jdbc "1.0.0-alpha7"]
|
[seancorfield/next.jdbc "1.0.0-alpha7"]
|
||||||
```
|
```
|
||||||
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-alpha7"}
|
seancorfield/next.jdbc {:mvn/version "1.0.0-alpha7"}
|
||||||
com.h2database/h2 {:mvn/version "1.4.197"}}}
|
com.h2database/h2 {:mvn/version "1.4.197"}}}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue