diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 7d738e56..76861ae6 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -47,4 +47,4 @@ jobs:
cache: 'maven'
- name: Build with Maven
- run: mvn clean verify -e -B -V -P run-its
+ run: mvn clean verify -e -B -V -P run-its site -Preporting
diff --git a/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArchetypeCatalogNotFoundException.java b/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArchetypeCatalogNotFoundException.java
index 3f6e7b9e..a1b47257 100644
--- a/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArchetypeCatalogNotFoundException.java
+++ b/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArchetypeCatalogNotFoundException.java
@@ -34,7 +34,6 @@ public class ArchetypeCatalogNotFoundException
/**
* Creates a new {@link ArchetypeCatalogNotFoundException}.
*
- * @param path the path of the metadata that was not found.
* @since 1.0
*/
public ArchetypeCatalogNotFoundException()
@@ -46,7 +45,6 @@ public ArchetypeCatalogNotFoundException()
* Creates a new {@link ArchetypeCatalogNotFoundException}.
*
* @param message The message.
- * @param path the path of the metadata that was not found.
* @since 1.0
*/
public ArchetypeCatalogNotFoundException( String message )
@@ -58,7 +56,6 @@ public ArchetypeCatalogNotFoundException( String message )
* Creates a new {@link ArchetypeCatalogNotFoundException}.
*
* @param message The message.
- * @param path the path of the metadata that was not found.
* @param cause the reason why it was not found (or null
if there is no specific reason)
* @since 1.0
*/
diff --git a/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArtifactStore.java b/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArtifactStore.java
index d7e74cfa..5fa400c1 100644
--- a/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArtifactStore.java
+++ b/mrm-api/src/main/java/org/codehaus/mojo/mrm/api/maven/ArtifactStore.java
@@ -34,6 +34,7 @@ public interface ArtifactStore
{
/**
+ *
* Returns the set of groupIds that begin with the specified prefix. Some implementations may be lazy caching * implementations, in which case it is permitted to return either the empty set, or only those entries which * have been loaded into the cache, so consumers should not assume that a missing entry implies non-existence. @@ -45,6 +46,7 @@ public interface ArtifactStore * assertEquals(new HashSet<String>(Arrays.asList("org.codehaus", "org.apache")), getGroupIds("org")); // query with a prefix * assertEquals(new HashSet<String>(Arrays.asList("org.codehaus.mojo")), getGroupIds("org.codehaus")); * + *
* Note that while the existence of groupId
* Returns the set of artifactIds that belong in the specified groupId. Some implementations may be lazy caching
* implementations, in which case it is permitted to return either the empty set, or only those entries which
* have been loaded into the cache, so consumers should not assume that a missing entry implies non-existence.
@@ -77,6 +80,7 @@ public interface ArtifactStore
Set
* Returns the set of versions of the specified groupId:artifactId. Some implementations may be lazy caching
* implementations, in which case it is permitted to return either the empty set, or only those entries which
* have been loaded into the cache, so consumers should not assume that a missing entry implies non-existence.
@@ -200,7 +204,7 @@ long getMetadataLastModified( String path )
/**
*
- * @return
+ * @return ArchetypeCatalog
* @throws IOException if an I/O error occurs.
* @throws ArchetypeCatalogNotFoundException if the archetypeCatalog does not exist.
* @since 1.0
@@ -209,7 +213,7 @@ long getMetadataLastModified( String path )
/**
*
- * @return
+ * @return long
* @throws IOException if an I/O error occurs.
* @throws ArchetypeCatalogNotFoundException if the archetypeCatalog does not exist.
* @since 1.0
@@ -218,7 +222,7 @@ long getMetadataLastModified( String path )
/**
*
- * @param content
+ * @param content the content
* @throws IOException if an I/O error occurs.
* @since 1.0
*/
diff --git a/mrm-api/src/main/javadoc/org/codehaus/mojo/mrm/api/maven/package.html b/mrm-api/src/main/javadoc/org/codehaus/mojo/mrm/api/maven/package.html
deleted file mode 100644
index 35f07467..00000000
--- a/mrm-api/src/main/javadoc/org/codehaus/mojo/mrm/api/maven/package.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-org.codehaus.mojo
implies that there must be groupIds
* org
and org.codehaus
there is no requirement that an implementation should
* report these inferred parent groupIds, it is just strongly encouraged.
@@ -61,6 +63,7 @@ public interface ArtifactStore
Set
-
-
-
\ No newline at end of file
diff --git a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/RunMojo.java b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/RunMojo.java
index d289848e..a8b97108 100644
--- a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/RunMojo.java
+++ b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/RunMojo.java
@@ -30,7 +30,8 @@
* settings.xml
and still work behind a proxy.
*
* @author Stephen Connolly
- * @description Starts a mock repository manager for manual testing.
+ *
+ * Starts a mock repository manager for manual testing.
*/
@Mojo( name = "run", requiresProject = false, requiresDirectInvocation = true, threadSafe = true )
public class RunMojo
diff --git a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StartMojo.java b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StartMojo.java
index 6ae0a91b..f708adaf 100644
--- a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StartMojo.java
+++ b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StartMojo.java
@@ -31,7 +31,8 @@
* settings.xml
and still work behind a proxy.
*
* @author Stephen Connolly
- * @description Starts a mock repository manager as part of a maven build for use by integration tests.
+ *
+ * Starts a mock repository manager as part of a maven build for use by integration tests.
*/
@Mojo( name = "start", defaultPhase = LifecyclePhase.PRE_INTEGRATION_TEST, requiresProject = false, threadSafe = true )
public class StartMojo
diff --git a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StopMojo.java b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StopMojo.java
index d5a5e7cb..74510b28 100644
--- a/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StopMojo.java
+++ b/mrm-maven-plugin/src/main/java/org/codehaus/mojo/mrm/plugin/StopMojo.java
@@ -28,7 +28,8 @@
* settings.xml
and still work behind a proxy.
*
* @author Stephen Connolly
- * @description Stops the mock repository manager started by mrm:start
as part of a maven build for use
+ *
+ * Stops the mock repository manager started by mrm:start
as part of a maven build for use
* by integration tests.
*/
@Mojo( name = "stop", defaultPhase = LifecyclePhase.POST_INTEGRATION_TEST, requiresProject = false, threadSafe = true )
diff --git a/mrm-servlet/src/main/javadoc/org/codehaus/mojo/mrm/impl/digest/package.html b/mrm-servlet/src/main/javadoc/org/codehaus/mojo/mrm/impl/digest/package.html
deleted file mode 100644
index 4767d478..00000000
--- a/mrm-servlet/src/main/javadoc/org/codehaus/mojo/mrm/impl/digest/package.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-