@@ -193,9 +193,9 @@ public abstract class AbstractFixJavadocMojo extends AbstractMojo {
193
193
private static final String CLIRR_MAVEN_PLUGIN_ARTIFACTID = "clirr-maven-plugin" ;
194
194
195
195
/**
196
- * The latest Clirr Maven plugin version <code>2.2.2 </code> *
196
+ * The latest Clirr Maven plugin version <code>2.8 </code> *
197
197
*/
198
- private static final String CLIRR_MAVEN_PLUGIN_VERSION = "2.2.2 " ;
198
+ private static final String CLIRR_MAVEN_PLUGIN_VERSION = "2.8 " ;
199
199
200
200
/**
201
201
* The Clirr Maven plugin goal <code>check</code> *
@@ -228,7 +228,7 @@ public abstract class AbstractFixJavadocMojo extends AbstractMojo {
228
228
229
229
/**
230
230
* Version to compare the current code against using the
231
- * <a href="http ://mojo.codehaus .org/clirr-maven-plugin/">Clirr Maven Plugin</a>.
231
+ * <a href="https ://www.mojohaus .org/clirr-maven-plugin/">Clirr Maven Plugin</a>.
232
232
* <br/>
233
233
* See <a href="#defaultSince">defaultSince</a>.
234
234
*/
@@ -632,17 +632,13 @@ private void executeClirr() throws MavenInvocationException {
632
632
633
633
String clirrGoal = getFullClirrGoal ();
634
634
635
- // http ://mojo.codehaus .org/clirr-maven-plugin/check-mojo.html
635
+ // https ://www.mojohaus .org/clirr-maven-plugin/check-mojo.html
636
636
File clirrTextOutputFile = FileUtils .createTempFile (
637
637
"clirr" , ".txt" , new File (project .getBuild ().getDirectory ()));
638
638
Properties properties = new Properties ();
639
639
properties .put ("textOutputFile" , clirrTextOutputFile .getAbsolutePath ());
640
640
properties .put ("comparisonVersion" , comparisonVersion );
641
641
properties .put ("failOnError" , "false" );
642
- if (JavaVersion .JAVA_SPECIFICATION_VERSION .isBefore ("8" )) {
643
- // ensure that Java7 picks up TLSv1.2 when connecting with Central
644
- properties .put ("https.protocols" , "TLSv1.2" );
645
- }
646
642
647
643
File invokerDir = new File (project .getBuild ().getDirectory (), "invoker" );
648
644
invokerDir .mkdirs ();
@@ -724,7 +720,7 @@ private void parseClirrTextOutputFile(File clirrTextOutputFile) throws IOExcepti
724
720
continue ;
725
721
}
726
722
727
- // http ://clirr.sourceforge.net/clirr-core/exegesis.html
723
+ // https ://clirr.sourceforge.net/clirr-core/exegesis.html
728
724
// 7011 - Method Added
729
725
// 7012 - Method Added to Interface
730
726
// 8000 - Class Added
0 commit comments