public static enum MavenKBean.PredefinedRepo extends java.lang.Enum<MavenKBean.PredefinedRepo>
Enum Constant and Description |
---|
OSSRH
Represents the OSSRH (Sonatype's Open Source Software Repository Hosting) repository for deploying to
Maven central.
|
Modifier and Type | Method and Description |
---|---|
static MavenKBean.PredefinedRepo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MavenKBean.PredefinedRepo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MavenKBean.PredefinedRepo OSSRH
jeka.repos.publish.username
: ossrh user namejeka.repos.publish.password
: ossrh passwordjeka.gpg.secret-key
: armored ascii gpg secret key for signingjeka.gpg.passphrase
: passphrase for gpg secretpublic static MavenKBean.PredefinedRepo[] values()
for (MavenKBean.PredefinedRepo c : MavenKBean.PredefinedRepo.values()) System.out.println(c);
public static MavenKBean.PredefinedRepo valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null