Package org.apache.maven.plugins.enforcer

Examples of org.apache.maven.plugins.enforcer.EnforcerExpressionEvaluator


     */
    public void testEvaluate()
    {
        MavenSession session = EnforcerTestUtils.getMavenSession();

        EnforcerExpressionEvaluator ev =
            new MockEnforcerExpressionEvaluator( session, new MockPathTranslator(), new MockProject() );
        assertMatch( ev, "SNAPSHOT" );
        assertMatch( ev, "RELEASE" );
        assertMatch( ev, "SNAPSHOT" );
        assertMatch( ev, "LATEST" );
View Full Code Here

TOP

Related Classes of org.apache.maven.plugins.enforcer.EnforcerExpressionEvaluator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.