Skip to content

Commit a4a7fef

Browse files
authored
use https (fixes #49) (#50)
use https (fixes #49)
1 parent 3a8946e commit a4a7fef

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414
- Improved simple test to report all day success.
1515
- Expose a read-only list of extractors to all users.
1616

17+
### Fixed
18+
- typesafe now only offers https access
19+
[#49](https://github.com/clowder-framework/clowder/issues/49)
20+
1721
## 1.10.1 - 2020-07-16
1822

1923
### Fixed

project/Build.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ object ApplicationBuild extends Build {
154154
resolvers += "Aduna" at "http://maven-us.nuxeo.org/nexus/content/repositories/public/",
155155
//resolvers += "Forth" at "http://139.91.183.63/repository",
156156
resolvers += "NCSA" at "https://opensource.ncsa.illinois.edu/nexus/content/repositories/thirdparty",
157+
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/",
157158

158159
// add custom folder to the classpath, use this to add/modify clowder:
159160
// custom/public/stylesheets/themes - for custom themes

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
logLevel := Level.Warn
33

44
// The Typesafe repository
5-
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
5+
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
66

77
// Use the Play sbt plugin for Play projects
88
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.6")

0 commit comments

Comments
 (0)