Skip to content
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.

Commit

Permalink
Prevent eaio uuid from being fetched over HTTP (#166)
Browse files Browse the repository at this point in the history
* Prevent eaio uuid from being fetched over HTTP

The original com.eaio.uuid package maintainer seems to not have pushed
version 3.3 of uuid to a reliable public repository. This fixes the
problem by forcing the use of 3.2 instead.

Tests pass and it doesn't seem like 3.2 regresses anything.

* Use "lein" instead of "lein2"

Travis seems to have switched the default around, and instead of
defaulting to lein 1.x "lein" now points to "lein 2.x".

Legacy users now have to use "lein1" instead.
  • Loading branch information
chrisglass authored and brutasse committed Jan 22, 2018
1 parent 8d08685 commit 81d43d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sudo: false
language: clojure
lein: lein2
lein: lein
jdk:
- oraclejdk8
branches:
Expand Down
4 changes: 3 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
[ring/ring-core "1.3.2"
:exclusions [org.clojure/tools.reader]]
[ring/ring-codec "1.0.0"]
[cc.qbits/alia-all "3.3.0"]
[com.eaio.uuid/uuid "3.2"]
[cc.qbits/alia-all "3.3.0"
:exclusions [com.eaio.uuid/uuid]]
[cc.qbits/hayt "3.0.1"]
[cc.qbits/jet "0.7.9"
:exclusions [org.clojure/tools.reader]]
Expand Down

1 comment on commit 81d43d2

@mpenet
Copy link
Member

@mpenet mpenet commented on 81d43d2 Jan 22, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might be able to bump to alia 4.2.1 (or 4.1.0) painlessly. com.eaio.uuid/uuid is no longer a dependency and there are also a few improvements. The rest should be backward compatible from a quick glance at pithos code.

Please sign in to comment.