Examples of ArchetypeRegistryXpp3Reader


Examples of org.apache.maven.archetype.registry.io.xpp3.ArchetypeRegistryXpp3Reader

    }

    public ArchetypeRegistry readArchetypeRegistry( Reader reader )
        throws IOException, XmlPullParserException
    {
        ArchetypeRegistryXpp3Reader xpp3Reader = new ArchetypeRegistryXpp3Reader();

        try
        {
            return xpp3Reader.read( reader );
        }
        finally
        {
            IOUtil.close( reader );
        }
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.