Skip to content

Commit e84cef8

Browse files
committed
[secure] Use https where possible
1 parent f83c052 commit e84cef8

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

.mvn/wrapper/MavenWrapperDownloader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* "License"); you may not use this file except in compliance
88
* with the License. You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing,
1313
* software distributed under the License is distributed on an

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## If you have a question or need any help...
22

3-
Please use [the mailing list](http://groups.google.com/group/mybatis-user) instead of creating issues on the tracker. Thank you!
3+
Please use [the mailing list](https://groups.google.com/group/mybatis-user) instead of creating issues on the tracker. Thank you!
44

55
## Reporting a bug
66

@@ -9,13 +9,13 @@ Please use [the mailing list](http://groups.google.com/group/mybatis-user) inste
99

1010
## Proposing a new feature
1111

12-
- It is a good idea to discuss your changes on [the mailing list](http://groups.google.com/group/mybatis-user) to get feedback from the community.
12+
- It is a good idea to discuss your changes on [the mailing list](https://groups.google.com/group/mybatis-user) to get feedback from the community.
1313
- If you have a patch with unit tests, send a pull request. Please see the [Contributing code](CONTRIBUTING.md#contributing-code) section.
1414

1515

1616
## Improving documentation
1717

18-
- Documentations are placed under [src/site](https://github.com/mybatis/mybatis-3/tree/master/src/site) directory in [the xdoc format](http://maven.apache.org/doxia/references/xdoc-format.html), so it is basically the same as creating a patch to contribute documentation changes. Please see the [Contributing code](CONTRIBUTING.md#contributing-code) section.
18+
- Documentations are placed under [src/site](https://github.com/mybatis/mybatis-3/tree/master/src/site) directory in [the xdoc format](https://maven.apache.org/doxia/references/xdoc-format.html), so it is basically the same as creating a patch to contribute documentation changes. Please see the [Contributing code](CONTRIBUTING.md#contributing-code) section.
1919

2020
## Contributing code
2121

@@ -34,7 +34,7 @@ Please use [the mailing list](http://groups.google.com/group/mybatis-user) inste
3434
* you may not use this file except in compliance with the License.
3535
* You may obtain a copy of the License at
3636
*
37-
* http://www.apache.org/licenses/LICENSE-2.0
37+
* https://www.apache.org/licenses/LICENSE-2.0
3838
*
3939
* Unless required by applicable law or agreed to in writing, software
4040
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -57,6 +57,6 @@ Here are the steps of a typical workflow.
5757
6. Send a [pull request](https://help.github.com/articles/using-pull-requests).
5858

5959
For steps 1 to 3, please read [this GitHub help](https://help.github.com/articles/fork-a-repo) if you are not familiar with these operations.
60-
Step 4 and 5 are basic [git](http://git-scm.com/) operations. Please see the [online documentation](http://git-scm.com/documentation) for its usage.
60+
Step 4 and 5 are basic [git](https://git-scm.com/) operations. Please see the [online documentation](https://git-scm.com/documentation) for its usage.
6161

6262
For how to write a unit test, please see the [unit test](https://github.com/mybatis/mybatis-3/wiki/Unit-Test) page.

ISSUE_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://stackoverflow.com/questions/ask?tags=mybatis
88
99
Question?
1010
======================
11-
Please use the mailing list. http://groups.google.com/group/mybatis-user
11+
Please use the mailing list. https://groups.google.com/group/mybatis-user
1212
Or Stack Overflow with 'mybatis' tag. https://stackoverflow.com/questions/ask?tags=mybatis
1313
Questions on this tracker will be closed without comment.
1414
@@ -26,7 +26,7 @@ And we spend a lot of time just trying to reproduce the reported problem, so ple
2626
Feature request?
2727
=======================
2828
- Please delete the BUG REPORT FORM below and describe the feature.
29-
- It is a good idea to discuss your changes on the mailing list to get feedback from the community. http://groups.google.com/group/mybatis-user
29+
- It is a good idea to discuss your changes on the mailing list to get feedback from the community. https://groups.google.com/group/mybatis-user
3030
- If you have a patch with unit tests, send a pull request. Please see the wiki page : https://github.com/mybatis/mybatis-3/wiki/Contribute
3131
-->
3232

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Apache License
22
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
3+
https://www.apache.org/licenses/
44

55
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
66

@@ -192,7 +192,7 @@
192192
you may not use this file except in compliance with the License.
193193
You may obtain a copy of the License at
194194

195-
http://www.apache.org/licenses/LICENSE-2.0
195+
https://www.apache.org/licenses/LICENSE-2.0
196196

197197
Unless required by applicable law or agreed to in writing, software
198198
distributed under the License is distributed on an "AS IS" BASIS,

NOTICE

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
iBATIS
22
This product includes software developed by
3-
The Apache Software Foundation (http://www.apache.org/).
3+
The Apache Software Foundation (https://www.apache.org/).
44

55
Copyright 2010 The Apache Software Foundation
66

77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
99
You may obtain a copy of the License at
1010

11-
http://www.apache.org/licenses/LICENSE-2.0
11+
https://www.apache.org/licenses/LICENSE-2.0
1212

1313
Unless required by applicable law or agreed to in writing, software
1414
distributed under the License is distributed on an "AS IS" BASIS,
@@ -59,7 +59,7 @@ Refactored SqlBuilder class (SQL, AbstractSQL)
5959
you may not use this file except in compliance with the License.
6060
You may obtain a copy of the License at
6161

62-
http://www.apache.org/licenses/LICENSE-2.0
62+
https://www.apache.org/licenses/LICENSE-2.0
6363

6464
Unless required by applicable law or agreed to in writing, software
6565
distributed under the License is distributed on an "AS IS" BASIS,

mvnw

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# "License"); you may not use this file except in compliance
99
# with the License. You may obtain a copy of the License at
1010
#
11-
# http://www.apache.org/licenses/LICENSE-2.0
11+
# https://www.apache.org/licenses/LICENSE-2.0
1212
#
1313
# Unless required by applicable law or agreed to in writing,
1414
# software distributed under the License is distributed on an

mvnw.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@REM "License"); you may not use this file except in compliance
88
@REM with the License. You may obtain a copy of the License at
99
@REM
10-
@REM http://www.apache.org/licenses/LICENSE-2.0
10+
@REM https://www.apache.org/licenses/LICENSE-2.0
1111
@REM
1212
@REM Unless required by applicable law or agreed to in writing,
1313
@REM software distributed under the License is distributed on an

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
limitations under the License.
1717
1818
-->
19-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2020
<modelVersion>4.0.0</modelVersion>
2121

2222
<parent>
@@ -37,7 +37,7 @@
3737
annotations. Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping
3838
tools.
3939
</description>
40-
<url>http://www.mybatis.org/mybatis-3</url>
40+
<url>https://www.mybatis.org/mybatis-3</url>
4141

4242
<inceptionYear>2009</inceptionYear>
4343

@@ -109,7 +109,7 @@
109109
</contributors>
110110

111111
<scm>
112-
<url>http://github.com/mybatis/mybatis-3</url>
112+
<url>https://github.com/mybatis/mybatis-3</url>
113113
<connection>scm:git:ssh://github.com/mybatis/mybatis-3.git</connection>
114114
<developerConnection>scm:git:ssh://[email protected]/mybatis/mybatis-3.git</developerConnection>
115115
<tag>HEAD</tag>

0 commit comments

Comments
 (0)