Package org.apache.maven.project.io.stax

Examples of org.apache.maven.project.io.stax.MavenStaxReader


     * @todo should not have to throw Exception
     */
    public Project( Reader in )
        throws Exception
    {
        MavenStaxReader reader = new MavenStaxReader();
        model = reader.read( in );
        resolveDependencies();
        resolveVersions();
    }
View Full Code Here


     * @todo should not have to throw Exception
     */
    public Project( URL url )
        throws Exception
    {
        MavenStaxReader reader = new MavenStaxReader();
        model = reader.read( url.getFile() );
        resolveDependencies();
        resolveVersions();
    }
View Full Code Here

     * @todo should not have to throw Exception
     */
    public Project( String path )
        throws Exception
    {
        MavenStaxReader reader = new MavenStaxReader();
        model = reader.read( path );
        resolveDependencies();
        resolveVersions();
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.project.io.stax.MavenStaxReader

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.