MVN

net.sf.maven-properties-enum-plugin : maven-properties-enum-plugin

Maven & Gradle

Dec 10, 2010

Maven Property-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>net.sf.maven-properties-enum-plugin</groupId>
    <artifactId>maven-properties-enum-plugin</artifactId>
    <version>1.0.1</version>
</plugin>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 1.0.1

All Versions

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

Version Vulnerabilities Updated
1.0.x
maven-properties-enum-plugin-1.0.1

How to add a plugin to Maven

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

<plugin>
    <groupId>net.sf.maven-properties-enum-plugin</groupId>
    <artifactId>maven-properties-enum-plugin</artifactId>
    <version>1.0.1</version>
</plugin>