Skip to content

Commit

Permalink
minor: update link to web site to avoid redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
romani committed Mar 19, 2023
1 parent ee10435 commit d667693
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Pitest (aka PIT) is a state of the art mutation testing system for Java and the JVM.

Read all about it at http://pitest.org
Read all about it at https://pitest.org

## Releases

Expand Down Expand Up @@ -579,7 +579,7 @@ Please note that any stored history files or sonar results are invalidated by th
* support user defined test prioritisation
* fix for issue blocking usage with [Robolectric](http://robolectric.org/)

Note, setup for Ant based projects changes in this release. See [ant setup](http://pitest.org/quickstart/ant/) for details on usage.
Note, setup for Ant based projects changes in this release. See [ant setup](https://pitest.org/quickstart/ant/) for details on usage.

### 0.31

Expand Down
2 changes: 1 addition & 1 deletion pitest-ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<artifactId>pitest-ant</artifactId>
<name>pitest-ant</name>
<url>http://pitest.org</url>
<url>https://pitest.org</url>
<description>Pitest Ant task.</description>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pitest-command-line/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<artifactId>pitest-command-line</artifactId>
<name>pitest-command-line</name>
<url>http://pitest.org</url>
<url>https://pitest.org</url>
<description>Pitest command line tool.</description>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pitest-entry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<artifactId>pitest-entry</artifactId>
<name>pitest-entry</name>
<url>http://pitest.org</url>
<url>https://pitest.org</url>
<description>Pitest entry point</description>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pitest-groovy-verification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>jar</packaging>
<name>pitest-groovy-verification</name>
<description>tests for pit groovy integration</description>
<url>http://pitest.org</url>
<url>https://pitest.org</url>

<build>

Expand Down
2 changes: 1 addition & 1 deletion pitest-html-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<artifactId>pitest-html-report</artifactId>
<name>pitest-html-report</name>
<url>http://pitest.org</url>
<url>https://pitest.org</url>
<description>Pitest html report plugin.</description>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $errors : { error |

<hr/>

Report generated by <a href='http://pitest.org'>PIT</a> ${project.version}
Report generated by <a href='https://pitest.org'>PIT</a> ${project.version}

<br/>
<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $tests:{ test | <li>$test.name$ ($test.time$ ms)</li>}$

<br/>

Report generated by <a href='http://pitest.org'>PIT</a> ${project.version}
Report generated by <a href='https://pitest.org'>PIT</a> ${project.version}

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ $errors : { error |

<hr/>

Report generated by <a href='http://pitest.org'>PIT</a> ${project.version}
Report generated by <a href='https://pitest.org'>PIT</a> ${project.version}

</body>
</html>
2 changes: 1 addition & 1 deletion pitest-maven-verification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>jar</packaging>
<name>pitest-maven-verification</name>
<description>Pitest Maven Mojo integration tests.</description>
<url>http://pitest.org</url>
<url>https://pitest.org</url>

<properties>
<maven.version>2.2.1</maven.version>
Expand Down
2 changes: 1 addition & 1 deletion pitest-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>maven-plugin</packaging>
<name>pitest-maven</name>
<description>Pitest Maven Mojo.</description>
<url>http://pitest.org</url>
<url>https://pitest.org</url>

<properties>
<scm.version>1.9.4</scm.version>
Expand Down
2 changes: 1 addition & 1 deletion pitest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<artifactId>pitest</artifactId>
<packaging>jar</packaging>
<name>pitest</name>
<url>http://pitest.org</url>
<url>https://pitest.org</url>
<description>Mutation testing system for Java.</description>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pitest/src/main/java/org/pitest/help/Help.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public enum Help {
NO_JUNIT_EXCLUDE_RUNNERS(
"Exclude Runners option requires JUnit 4.6 or above.");

private static final String URL = "http://pitest.org";
private static final String URL = "https://pitest.org";
private final String text;

Help(final String text) {
Expand Down

0 comments on commit d667693

Please sign in to comment.