File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
maven-release-plugin/src/main/java/org/apache/maven/plugins/release Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -45,36 +45,41 @@ public abstract class AbstractScmReadReleaseMojo extends AbstractReleaseMojo {
4545 * <p>
4646 * Explicit authentication information provided via {@link #username}, {@link #password} or {@link #privateKey} will take precedence.
4747 * @since 3.2.0
48+ * @see <a href="https://maven.apache.org/scm/authentication.html">SCM Authentication</a>
4849 */
4950 @ Parameter (property = "project.scm.id" , defaultValue = "${project.scm.id}" )
5051 private String serverId ;
5152
5253 /**
5354 * The username to use for authentication with the SCM.
55+ * @see <a href="https://maven.apache.org/scm/authentication.html">SCM Authentication</a>
5456 */
5557 @ Parameter (property = "username" )
5658 private String username ;
5759
5860 /**
5961 * The password to use for authentication with the SCM.
62+ * @see <a href="https://maven.apache.org/scm/authentication.html">SCM Authentication</a>
6063 */
6164 @ Parameter (property = "password" )
6265 private String password ;
6366
6467 /**
6568 * The path to the SSH private key to use for authentication with the SCM.
6669 * @since 3.2.0
70+ * @see <a href="https://maven.apache.org/scm/authentication.html">SCM Authentication</a>
6771 */
6872 @ Parameter (property = "privateKey" )
6973 private File privateKey ;
7074
7175 /**
7276 * Add a new or overwrite the default implementation per provider.
73- * The key is the scm prefix and the value is the role hint of the
77+ * The key is the scm prefix and the value is the role hint/provider id of the
7478 * {@link org.apache.maven.scm.provider.ScmProvider}.
7579 *
7680 * @since 2.0-beta-6
7781 * @see ScmManager#setScmProviderImplementation(String, String)
82+ * @see <a href="https://maven.apache.org/scm/scms-overview.html">SCM Providers</a>
7883 */
7984 @ Parameter
8085 private Map <String , String > providerImplementations ;
You can’t perform that action at this time.
0 commit comments