Package org.apache.maven.plugin.verifier.model

Examples of org.apache.maven.plugin.verifier.model.Verifications


        try
        {
            reader = new FileReader( this.verificationFile );

            VerificationsXpp3Reader xppReader = new VerificationsXpp3Reader();
            Verifications verifications = xppReader.read( reader );

            for ( Iterator i = verifications.getFiles().iterator(); i.hasNext(); )
            {
                org.apache.maven.plugin.verifier.model.File file =
                    (org.apache.maven.plugin.verifier.model.File) i.next();

                // Transform the file to check into an absolute path prefixing the basedir if
View Full Code Here


        try
        {
            reader = new FileReader( this.verificationFile );

            VerificationsXpp3Reader xppReader = new VerificationsXpp3Reader();
            Verifications verifications = xppReader.read( reader );

            for (org.apache.maven.plugin.verifier.model.File file : verifications.getFiles()) {
                // Transform the file to check into an absolute path prefixing the basedir if
                // the location is relative
                if (file.getLocation() != null) {
                    file.setLocation(getAbsoluteFileToCheck(new File(file.getLocation())).getPath());
                    verifyFile(file, results);
View Full Code Here

TOP

Related Classes of org.apache.maven.plugin.verifier.model.Verifications

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.