Skip to content

Commit

Permalink
Merge pull request #12 from stardog-union/bjr/stardog-7
Browse files Browse the repository at this point in the history
upgrade to stardog 7
  • Loading branch information
brianru authored Aug 9, 2019
2 parents 9c63a8c + 572b30a commit ea446d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Stardog-clj - Clojure language bindings to use to develop apps with the [Stardog
To use stardog-clj, follow these simple steps:

1. Download [Stardog](http://stardog.com), and unzip it
2. In your application, add the stardog-clj dependency to your project.clj file, or equivalent build tool. For example, `[stardog-clj "6.2.1"]`
2. In your application, add the stardog-clj dependency to your project.clj file, or equivalent build tool. For example, `[stardog-clj "7.0.0"]`
3. In your application, create a database specification `(create-db-spec database "http://localhost:5820/" "admin" "admin" true)`
4. You can use this specification to make a connection pool with `(make-datasource spec)`
5. Use `(with-connection-pool [conn datasource])` to start using the connection pool
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
(require 'cemerick.pomegranate.aether)
(cemerick.pomegranate.aether/register-wagon-factory!
"http" #(org.apache.maven.wagon.providers.http.HttpWagon.))
(defproject stardog-clj "6.2.1"
(defproject stardog-clj "7.0.0"
:description "Stardog-clj: Clojure bindings for Stardog"
:url "http://stardog.com"
:license {:name "Apache License"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[org.clojure/clojure "1.9.0"]
[com.complexible.stardog/client-http "6.2.1" :extension "pom"]]
[com.complexible.stardog/client-http "7.0.0" :extension "pom"]]
:repositories [["stardog" "http://maven.stardog.com"]]
:plugins [[jonase/eastwood "0.3.6"]
[lein-midje "3.2"]]
Expand Down

0 comments on commit ea446d7

Please sign in to comment.