Merge pull request #2 from kirasystems/travis

[#119123113] Travis
This commit is contained in:
Joey Coleman 2016-05-07 11:20:06 -04:00
commit 5fdc6334bb
3 changed files with 40 additions and 9 deletions

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: clojure
deploy:
skip_cleanup: true
provider: script
script: lein deploy
on:
tags: true
notifications:
slack:
secure: ilNqO2yGeCnunIlbLxjRpktFPugfNILBGyVKKgk3QFAQW2eWKdIR17RhOfN204nRBNTG+LKbAldOOd4tEPfHmSWzx1R/jLsFpfe56FwrtaYA3xKOJkYFnB+jthZb7HbsuTV2umQ3Z5vGB6rdiySAaXYWExchO2IDxa0T4aJfBCk=
env:
global:
- secure: c2JzRIJoLh1x6t5khQgdxGEXf5DMtPYeOCr2HifB8UIgBJrpRL7CFURaiZH6cb4k1kAPKjZyE8zC4ZogCK1W3YjHMSPcv/d4MViYh3/Z5mD53EEYyD9msuuxaYL5aqBoHtKgx2DSyClhkBWEkQaHbppEAWmkwIEUcLXZ7uG3KqI=
- secure: dCLSYUuRFWVZX6NTQ71Lm2j+gRwi2a0f/8UM4fJP1F6JXpUi9W4imqtJs5a/pxOhui0YrTYX1fPCMJI31k30/crI0a+eeU6ZBvhP4VXNXg7ltc49LPwTX81nCtUc/hGksNYjZXWy3mDEO1u55bC5Qkn7T2HwJYCKBwlU+2+2Rlg=

View file

@ -1,9 +1,14 @@
# views
[![Build Status](https://travis-ci.org/kirasystems/views.svg?branch=master)](https://travis-ci.org/kirasystems/views)
[![Dependencies Status](https://jarkeeper.com/kirasystems/views/status.svg)](https://jarkeeper.com/kirasystems/views)
Eventually consistent external materialized views.
*Notice: library is still somewhat in flux.*
[![Clojars Project](http://clojars.org/kirasystems/views/latest-version.svg)](http://clojars.org/kirasystems/views)
## Design
TODO
@ -18,7 +23,7 @@ TODO
## License
Copyright © 2015 Kira Inc.
Copyright © 2015-2016 Kira Inc.
Authors Dave Della Costa (https://github.com/ddellacosta) and Alexander Hudek (https://github.com/akhudek)

View file

@ -1,4 +1,4 @@
(defproject views "1.4.4"
(defproject kirasystems/views "1.4.9-SNAPSHOT"
:description "A view to the past helps navigate the future."
:url "https://github.com/kirasystems/views"
@ -6,19 +6,31 @@
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:repositories [["releases" {:url "https://clojars.org/repo"
:sign-releases false
:username :env
:password :env}]]
:dependencies [[org.clojure/tools.logging "0.3.1"]
[clj-logging-config "1.9.12"]
[prismatic/plumbing "0.4.3"]
[pjstadig/humane-test-output "0.7.0"]
[environ "1.0.0"]]
[prismatic/plumbing "0.5.3"]
[pjstadig/humane-test-output "0.8.0"]
[environ "1.0.3"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0"]]}
:test {:dependencies [[org.clojure/tools.nrepl "0.2.10"]
[environ "1.0.0"]
:test {:dependencies [[org.clojure/tools.nrepl "0.2.12"]
[org.clojure/data.generators "0.1.2"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}}
:plugins [[lein-ancient "0.6.7"]
[lein-environ "0.4.0"]])
:plugins [[lein-ancient "0.6.10"]
[lein-environ "1.0.3"]]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])