8000 Use HTTPS links to commons.apache.org. · apache/commons-io@a344177 · GitHub
Skip to content

Commit a344177

Browse files
author
Gary Gregory
committed
Use HTTPS links to commons.apache.org.
1 parent 5021522 commit a344177

8 files changed

Lines changed: 19 additions & 23 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,12 +1099,12 @@ Feedback
10991099
==============================================================================
11001100

11011101
Open source works best when you give feedback:
1102-
http://commons.apache.org/io/
1102+
https://commons.apache.org/io/
11031103

11041104
Please direct all bug reports to JIRA
11051105
http://issues.apache.org/jira/browse/IO
11061106

11071107
Or subscribe to the commons-user mailing list (prefix emails by [io])
1108-
http://commons.apache.org/mail-lists.html
1108+
https://commons.apache.org/mail-lists.html
11091109

11101110
The Commons-IO Team

pom.xml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The Apache Commons IO library contains utility classes, stream implementations,
3333
file comparators, endian transformation classes, and much more.
3434
</description>
3535

36-
<url>http://commons.apache.org/proper/commons-io/</url>
36+
<url>https://commons.apache.org/proper/commons-io/</url>
3737

3838
<issueManagement>
3939
<system>jira</system>
@@ -241,23 +241,20 @@ file comparators, endian transformation classes, and much more.
241241
<dependency>
242242
<groupId>org.apache.commons</groupId>
243243
<artifactId>commons-lang3</artifactId>
244-
<!-- 3.9 requires Java 8 -->
245-
<version>3.8.1</version>
244+
<version>3.9</version>
246245
<scope>test</scope>
247246
</dependency>
248247
</dependencies>
249248

250249
<properties>
251-
<maven.compiler.source>1.7</maven.compiler.source>
252-
<maven.compiler.target>1.7</maven.compiler.target>
253-
<!-- version 4.0.0 requires Java 8 -->
254-
<commons.felix.version>3.5.1</commons.felix.version>
250+
<maven.compiler.source>1.8</maven.compiler.source>
251+
<maven.compiler.target>1.8</maven.compiler.target>
255252
<commons.componentid>io</commons.componentid>
256253
<commons.module.name>org.apache.commons.io</commons.module.name>
257254
<commons.rc.version>RC1</commons.rc.version>
258255
<commons.bc.version>2.6</commons.bc.version>
259256
<commons.release.version>2.7</commons.release.version>
260-
<commons.release.desc>(requires JDK 1.7+)</commons.release.desc>
257+
<commons.release.desc>(requires Java 8)</commons.release.desc>
261258
<commons.jira.id>IO</commons.jira.id>
262259
<commons.jira.pid>12310477</commons.jira.pid>
263260
<commons.osgi.export>
@@ -376,7 +373,6 @@ file comparators, endian transformation classes, and much more.
376373
<plugin>
377374
<groupId>org.apache.maven.plugins</groupId>
378375
<artifactId>maven-javadoc-plugin</artifactId>
379-
<version>${commons.javadoc.version}</version>
380376
<configuration>
381377
<source>7</source>
382378
</configuration>

src/changes/release-notes.vm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,12 +1018,12 @@ Feedback
10181018
==============================================================================
10191019

10201020
Open source works best when you give feedback:
1021-
http://commons.apache.org/io/
1021+
https://commons.apache.org/io/
10221022

10231023
Please direct all bug reports to JIRA
10241024
http://issues.apache.org/jira/browse/IO
10251025

10261026
Or subscribe to the commons-user mailing list (prefix emails by [io])
1027-
http://commons.apache.org/mail-lists.html
1027+
https://commons.apache.org/mail-lists.html
10281028

10291029
The Commons-IO Team

src/main/java/org/apache/commons/io/monitor/FileAlterationObserver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
* that are of interest. This makes it more efficient and reduces the
8383
* noise from <i>unwanted</i> file system events.
8484
* <p>
85-
* <a href="http://commons.apache.org/io/">Commons IO</a> has a good range of
85+
* <a href="https://commons.apache.org/io/">Commons IO</a> has a good range of
8686
* useful, ready made
8787
* <a href="../filefilter/package-summary.html">File Filter</a>
8888
* implementations for this purpose.

src/site/site.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<body>
2626
<menu name="Commons IO">
2727
<item name="Overview" href="/index.html"/>
28-
<item name="Download" href="http://commons.apache.org/io/download_io.cgi"/>
28+
<item name="Download" href="https://commons.apache.org/io/download_io.cgi"/>
2929
<item name="User guide" href="/description.html"/>
3030
<item name="Best practices" href="/bestpractices.html"/>
3131
<item name="Javadoc 2.6" href="/javadocs/api-release/index.html"/>

src/site/xdoc/description.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ limitations under the License.
5252
</p>
5353

5454
<source>
55-
InputStream in = new URL( "http://commons.apache.org" ).openStream();
55+
InputStream in = new URL( "https://commons.apache.org" ).openStream();
5656
try {
5757
InputStreamReader inR = new InputStreamReader( in );
5858
BufferedReader buf = new BufferedReader( inR );
@@ -69,7 +69,7 @@ limitations under the License.
6969
</p>
7070

7171
<source>
72-
InputStream in = new URL( "http://commons.apache.org" ).openStream();
72+
InputStream in = new URL( "https://commons.apache.org" ).openStream();
7373
try {
7474
System.out.println( IOUtils.toString( in ) );
7575
} finally {

src/site/xdoc/index.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ There are six main areas included:
5050
<subsection name="Commons IO 2.6 (requires JDK 1.7+)">
5151
<p>
5252
Commons IO 2.6 is the latest version and requires a minimum of JDK 1.7 -
53-
<a href="http://commons.apache.org/io/download_io.cgi">Download now!</a>
53+
<a href="https://commons.apache.org/io/download_io.cgi">Download now!</a>
5454
</p>
5555
<p>
5656
View the
@@ -63,7 +63,7 @@ There are six main areas included:
6363
<subsection name="Commons IO 2.5 (requires JDK 1.6+)">
6464
<p>
6565
Commons IO 2.5 requires a minimum of JDK 1.6 -
66-
<a href="http://commons.apache.org/io/download_io.cgi">Download now!</a>
66+
<a href="https://commons.apache.org/io/download_io.cgi">Download now!</a>
6767
</p>
6868
<p>
6969
View the
@@ -76,7 +76,7 @@ There are six main areas included:
7676
<subsection name="Commons IO 2.4 (requires JDK 1.6+)">
7777
<p>
7878
Commons IO 2.4 requires a minimum of JDK 1.6 -
79-
<a href="http://commons.apache.org/io/download_io.cgi">Download now!</a>
79+
<a href="https://commons.apache.org/io/download_io.cgi">Download now!</a>
8080
</p>
8181
<p>
8282
View the <a href="upgradeto2_4.html">Release Notes</a> and
@@ -87,7 +87,7 @@ View the <a href="upgradeto2_4.html">Release Notes</a> and
8787
<subsection name="Commons IO 2.3 (requires JDK 1.6+)">
8888
<p>
8989
Commons IO 2.3 requires a minimum of JDK 1.6 -
90-
<a href="http://commons.apache.org/io/download_io.cgi">Download now!</a>
90+
<a href="https://commons.apache.org/io/download_io.cgi">Download now!</a>
9191
</p>
9292
<p>
9393
View the <a href="upgradeto2_3.html">Release Notes</a> and
@@ -98,7 +98,7 @@ View the <a href="upgradeto2_3.html">Release Notes</a> and
9898
<subsection name="Commons IO 2.2 (requires JDK 1.5+)">
9999
<p>
100100
Commons IO 2.2 requires a minimum of JDK 1.5 -
101-
<a href="http://commons.apache.org/io/download_io.cgi">Download now!</a>
101+
<a href="https://commons.apache.org/io/download_io.cgi">Download now!</a>
102102
</p>
103103
<p>
104104
View the <a href="upgradeto2_2.html">Release Notes</a> and

src/site/xdoc/mail-lists.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ limitations under the License.
4949
<section name="Overview">
5050
<p>
5151
<a href="index.html">Commons IO</a> shares mailing lists with all the other
52-
<a href="http://commons.apache.org/components.html">Commons Components</a>.
52+
<a href="https://commons.apache.org/components.html">Commons Components</a>.
5353
To make it easier for people to only read messages related to components they are interested in,
5454
the convention in Commons is to prefix the subject line of messages with the component's name,
5555
for example:

0 commit comments

Comments
 (0)