Package org.apache.maven.plugin.logging

Examples of org.apache.maven.plugin.logging.SystemStreamLog.info()


            }
        }

        validFamily = Os.OS_FAMILY;

        log.info( "Testing Mojo Using Valid Family: " + validFamily + " Invalid Family: " + invalidFamily );

        rule.setFamily( validFamily );
        assertTrue( rule.isAllowed() );

        rule.setFamily( invalidFamily );
View Full Code Here


            rule.execute( EnforcerTestUtils.getHelper() );
            fail( "Expected MojoExecution Exception becuase of invalid family type" );
        }
        catch ( EnforcerRuleException e )
        {
            log.info( "Caught Expected Exception:" + e.getLocalizedMessage() );
        }

        rule.setFamily( null );
        rule.setArch( Os.OS_ARCH );
        assertTrue( rule.isAllowed() );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.