Skip to content

Commit 347a79f

Browse files
committed
switch wcm.io domains to HTTPS
1 parent 5fbee78 commit 347a79f

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.travis.maven-settings.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<repository>
3333
<id>central</id>
34-
<url>http://repo1.maven.org/maven2/</url>
34+
<url>https://repo1.maven.org/maven2/</url>
3535
<layout>default</layout>
3636
<releases>
3737
<enabled>true</enabled>
@@ -57,7 +57,7 @@
5757

5858
<repository>
5959
<id>apache-snapshots</id>
60-
<url>http://repository.apache.org/snapshots</url>
60+
<url>https://repository.apache.org/snapshots</url>
6161
<layout>default</layout>
6262
<releases>
6363
<enabled>false</enabled>
@@ -74,7 +74,7 @@
7474

7575
<pluginRepository>
7676
<id>central</id>
77-
<url>http://repo1.maven.org/maven2/</url>
77+
<url>https://repo1.maven.org/maven2/</url>
7878
<layout>default</layout>
7979
<releases>
8080
<enabled>true</enabled>
@@ -100,7 +100,7 @@
100100

101101
<pluginRepository>
102102
<id>apache-snapshots</id>
103-
<url>http://repository.apache.org/snapshots</url>
103+
<url>https://repository.apache.org/snapshots</url>
104104
<layout>default</layout>
105105
<releases>
106106
<enabled>false</enabled>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="http://wcm.io/images/favicon-16@2x.png"/> Eclipse Maven Plugin
1+
<img src="https://wcm.io/images/favicon-16@2x.png"/> Eclipse Maven Plugin
22
======
33
[![Build Status](https://travis-ci.org/wcm-io-devops/eclipse-maven-plugin.png?branch=develop)](https://travis-ci.org/wcm-io-devops/eclipse-maven-plugin)
44
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.maven.plugins/eclipse-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.wcm.devops.maven.plugins/eclipse-maven-plugin)
@@ -7,14 +7,14 @@ The Eclipse Plugin is used to generate Eclipse IDE files (.project, .classpath a
77

88
This is a fork of the original [Maven Eclipse Plugin](https://maven.apache.org/plugins/maven-eclipse-plugin/) which [was retired end of 2015](http://mail-archives.apache.org/mod_mbox/maven-dev/201510.mbox/%3Cop.x55dxii1kdkhrr%40robertscholte.dynamic.ziggo.nl%3E) in favor of the m2e Eclipse integration.
99

10-
In our wcm.io and other Maven-based projects we usually use both m2e Integration and the Eclipse Maven Plugin. The Eclipse Maven Plugin is used to generate project-specific eclipse settings files and further files for Checkstyle, Findbugs and PMD based on a global build tools artifact defined a parent POM like `io.wcm.maven:io.wcm.maven.global-parent`, see [Global Parent](http://wcm.io/tooling/maven/global-parent.html) documentation for details.
10+
In our wcm.io and other Maven-based projects we usually use both m2e Integration and the Eclipse Maven Plugin. The Eclipse Maven Plugin is used to generate project-specific eclipse settings files and further files for Checkstyle, Findbugs and PMD based on a global build tools artifact defined a parent POM like `io.wcm.maven:io.wcm.maven.global-parent`, see [Global Parent](https://wcm.io/tooling/maven/global-parent.html) documentation for details.
1111

1212
So we maintain a fork of the original plugin here and publish it under Apache 2.0 license within the wcm.io DevOps project.
1313

1414
Documentation:
1515

16-
* [wcm.io DevOps Eclipse Maven Plugin Documentation](http://devops.wcm.io/maven/plugins/eclipse-maven-plugin/)
17-
* [Changes since the original Maven Eclipse Plugin 2.10.](http://devops.wcm.io/maven/plugins/eclipse-maven-plugin/changes-report.html)
16+
* [wcm.io DevOps Eclipse Maven Plugin Documentation](https://devops.wcm.io/maven/plugins/eclipse-maven-plugin/)
17+
* [Changes since the original Maven Eclipse Plugin 2.10.](https://devops.wcm.io/maven/plugins/eclipse-maven-plugin/changes-report.html)
1818

1919
To use this in your projects update all your POMs to use
2020

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ under the License.
2525
<parent>
2626
<groupId>io.wcm.devops</groupId>
2727
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
28-
<version>1.1.4</version>
28+
<version>1.1.5-SNAPSHOT</version>
2929
<relativePath />
3030
</parent>
3131

@@ -63,7 +63,7 @@ under the License.
6363

6464
<organization>
6565
<name>wcm.io DevOps</name>
66-
<url>http://devops.wcm.io</url>
66+
<url>https://devops.wcm.io</url>
6767
</organization>
6868

6969
<licenses>
@@ -77,7 +77,7 @@ under the License.
7777
<developer>
7878
<name>wcm.io Community</name>
7979
<organization>wcm.io</organization>
80-
<organizationUrl>http://wcm.io</organizationUrl>
80+
<organizationUrl>https://wcm.io</organizationUrl>
8181
</developer>
8282
</developers>
8383

src/site/apt/index.apt.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ${project.name}
3232

3333
This is a fork of the original {{{https://maven.apache.org/plugins/maven-eclipse-plugin/}Maven Eclipse Plugin}} which {{{http://mail-archives.apache.org/mod_mbox/maven-dev/201510.mbox/%3Cop.x55dxii1kdkhrr%40robertscholte.dynamic.ziggo.nl%3E}was retired end of 2015}} in favor of the m2e Eclipse integration.
3434

35-
In our wcm.io and other Maven-based projects we usually use both m2e Integration and the Eclipse Maven Plugin. The Eclipse Maven Plugin is used to generate project-specific eclipse settings files and further files for Checkstyle, Findbugs and PMD based on a global build tools artifact defined a parent POM like `io.wcm.maven:io.wcm.maven.global-parent`, see {{{http://wcm.io/tooling/maven/global-parent.html}Global Parent}} documentation for details.
35+
In our wcm.io and other Maven-based projects we usually use both m2e Integration and the Eclipse Maven Plugin. The Eclipse Maven Plugin is used to generate project-specific eclipse settings files and further files for Checkstyle, Findbugs and PMD based on a global build tools artifact defined a parent POM like `io.wcm.maven:io.wcm.maven.global-parent`, see {{{https://wcm.io/tooling/maven/global-parent.html}Global Parent}} documentation for details.
3636

3737
So we maintain a fork of the original plugin here and publish it under Apache 2.0 license within the wcm.io DevOps project.
3838

src/test/resources/projects/MECLIPSE-295/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ under the License.
259259
<pluginRepository>
260260
<id>apache.snapshots</id>
261261
<name>snapshot plugins</name>
262-
<url>http://repository.apache.org/snapshots</url>
262+
<url>https://repository.apache.org/snapshots</url>
263263
<releases>
264264
<enabled>false</enabled>
265265
</releases>

0 commit comments

Comments
 (0)