Skip to content

Commit d9e1766

Browse files
committed
https
1 parent 425a84b commit d9e1766

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ScalikeJDBC-Async provides non-blocking APIs to talk with PostgreSQL and MySQL i
66

77
This library is built with [jasync-sql](https://github.com/jasync-sql/jasync-sql).
88

9-
![ScalikeJDBC Logo](http://scalikejdbc.org/img/logo.png)
9+
![ScalikeJDBC Logo](https://scalikejdbc.org/img/logo.png)
1010

1111
ScalikeJDBC:
1212

@@ -55,7 +55,7 @@ AsyncConnectionPool.singleton("jdbc:postgresql://localhost:5432/scalikejdbc", "s
5555
// create a new record within a transaction
5656
val created: Future[Company] = AsyncDB.localTx { implicit tx =>
5757
for {
58-
company <- Company.create("ScalikeJDBC, Inc.", Some("http://scalikejdbc.org/"))
58+
company <- Company.create("ScalikeJDBC, Inc.", Some("https://scalikejdbc.org/"))
5959
seratch <- Programmer.create("seratch", Some(company.id))
6060
gakuzzzz <- Programmer.create("gakuzzzz", Some(company.id))
6161
xuwei_k <- Programmer.create("xuwei-k", Some(company.id))

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _publishTo(v: String) = {
112112
Some("snapshots" at nexus + "content/repositories/snapshots")
113113
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
114114
}
115-
val _pomExtra = <url>http://scalikejdbc.org/</url>
115+
val _pomExtra = <url>https://scalikejdbc.org/</url>
116116
<licenses>
117117
<license>
118118
<name>Apache License, Version 2.0</name>

core/src/test/scala/programmerlist/ExampleSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class ExampleSpec
3434
for {
3535
company <- Company.create(
3636
"ScalikeJDBC, Inc.",
37-
Some("http://scalikejdbc.org/")
37+
Some("https://scalikejdbc.org/")
3838
)
3939
seratch <- Programmer.create("seratch", Some(company.id))
4040
gakuzzzz <- Programmer.create("gakuzzzz", Some(company.id))

notes/0.2.2.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ScalikeJDBC-Async 0.2.2 is out. Now we have the Play2 plugin to use ScalikeJDBC-Async seamlessly, thanks to @gakuzzzz!
22

3-
![ScalikeJDBC Logo](http://scalikejdbc.org/img/logo.png)
3+
![ScalikeJDBC Logo](https://scalikejdbc.org/img/logo.png)
44

55
https://github.com/seratch/scalikejdbc
66

notes/0.2.4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ScalikeJDBC-Async 0.2.4 is out. AsyncConnectionPoolSettings is added.
22

3-
![ScalikeJDBC Logo](http://scalikejdbc.org/img/logo.png)
3+
![ScalikeJDBC Logo](https://scalikejdbc.org/img/logo.png)
44

55
https://github.com/seratch/scalikejdbc
66

notes/0.2.5.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ScalikeJDBC-Async 0.2.5 is out.
22

3-
![ScalikeJDBC Logo](http://scalikejdbc.org/img/logo.png)
3+
![ScalikeJDBC Logo](https://scalikejdbc.org/img/logo.png)
44

55
https://github.com/seratch/scalikejdbc
66

0 commit comments

Comments
 (0)