All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugin.assembly.utils.InterpolationConstants Maven / Gradle / Ivy

Go to download

A Maven plugin to create archives of your project's sources, classes, dependencies etc. from flexible assembly descriptors.

There is a newer version: 3.7.1
Show newest version
package org.apache.maven.plugin.assembly.utils;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public final class InterpolationConstants
{
    
    public static final List PROJECT_PREFIXES;
    
    public static final List PROJECT_PROPERTIES_PREFIXES;
    
    static
    {
        List projectPrefixes = new ArrayList();
        projectPrefixes.add( "pom." );
        projectPrefixes.add( "project." );
        
        PROJECT_PREFIXES = Collections.unmodifiableList( projectPrefixes );
        
        List projectPropertiesPrefixes = new ArrayList();
        
        projectPropertiesPrefixes.add( "pom.properties." );
        projectPropertiesPrefixes.add( "project.properties." );
        
        PROJECT_PROPERTIES_PREFIXES = Collections.unmodifiableList( projectPropertiesPrefixes );
    }

    private InterpolationConstants()
    {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy