-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from wildbit/v1.0
V1.0 alpha 1
- Loading branch information
Showing
7 changed files
with
435 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
language: clojure | ||
lein: lein2 | ||
services: | ||
- mysql | ||
jdk: | ||
- openjdk7 | ||
- oraclejdk7 | ||
- oraclejdk8 | ||
script: "lein2 test-all" | ||
- oraclejdk9 | ||
script: "lein test-all" | ||
before_script: "echo 'CREATE DATABASE IF NOT EXISTS clj_mysql_queue;' | mysql -uroot" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
(defproject mysql-queue "0.2.0" | ||
(defproject mysql-queue "1.0.0-alpha1" | ||
:description "A durable queue with scheduled job support that is backed by MySQL." | ||
:url "https://github.com/wildbit/mysql-queue" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:dependencies [[org.clojure/clojure "1.6.0"] | ||
[org.clojure/core.async "0.2.374"] | ||
[org.clojure/java.jdbc "0.4.2"] | ||
:dependencies [[org.clojure/clojure "1.9.0"] | ||
[org.clojure/core.async "0.3.465"] | ||
[org.clojure/java.jdbc "0.7.5"] | ||
[mysql/mysql-connector-java "5.1.28"]] | ||
:scm {:name "git" :url "https://github.com/wildbit/mysql-queue"} | ||
:profiles {:1.5 {:dependencies [[org.clojure/clojure "1.5.0"]]} | ||
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} | ||
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} | ||
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}} | ||
:aliases {"test-all" ["with-profile" "+1.5:+1.6:+1.7:+1.8" "test"]}) | ||
:profiles {:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} | ||
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} | ||
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}} | ||
:aliases {"test-all" ["with-profile" "+1.7:+1.8:+1.9" "test"]}) |
Oops, something went wrong.