MVN

com.googlecode.maven-properties-enum-plugin : maven-properties-enum-plugin

Maven & Gradle

Aug 23, 2013

Maven Properties-Enum-Plugin · Never liked hard-coding your property keys? The maven-properties-enum-plugin allows you to generate enum types, holding all valid keys including javadoc. Your advantages: * You can't access on non-existing keys as it would cause compile errors * As it's an enum, you can use your IDE's auto-completion * You'll never have to check your properties keys again * You can see the property's value in the enum field's javadoc

<plugin>
    <groupId>com.googlecode.maven-properties-enum-plugin</groupId>
    <artifactId>maven-properties-enum-plugin</artifactId>
    <version>1.4.0</version>
</plugin>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.googlecode.maven-properties-enum-plugin : maven-properties-enum-plugin to add to Maven - Latest Versions:

  • Latest Stable: 1.4.0

All Versions

Choose a version of com.googlecode.maven-properties-enum-plugin : maven-properties-enum-plugin to add to Maven - All Versions:

Version Vulnerabilities Updated
1.4.x
maven-properties-enum-plugin-1.4.0
1.3.x
maven-properties-enum-plugin-1.3.1
maven-properties-enum-plugin-1.3.0
1.2.x
maven-properties-enum-plugin-1.2.9
maven-properties-enum-plugin-1.2.8
maven-properties-enum-plugin-1.2.7
maven-properties-enum-plugin-1.2.6
maven-properties-enum-plugin-1.2.5
maven-properties-enum-plugin-1.2.4
maven-properties-enum-plugin-1.2.3
maven-properties-enum-plugin-1.2.2
maven-properties-enum-plugin-1.2.0
1.1.x
maven-properties-enum-plugin-1.1.5
maven-properties-enum-plugin-1.1.4
maven-properties-enum-plugin-1.1.3
maven-properties-enum-plugin-1.1.2

How to add a plugin to Maven

Add the maven plugin to the pom.xml file information in this tag as follows:

<plugin>
    <groupId>com.googlecode.maven-properties-enum-plugin</groupId>
    <artifactId>maven-properties-enum-plugin</artifactId>
    <version>1.4.0</version>
</plugin>