Package org.apache.maven.archetype.registry.io.xpp3

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


    }

    public void writeArchetypeRegistry( File archetypeRegistryFile, ArchetypeRegistry archetypeRegistry )
        throws IOException
    {
        ArchetypeRegistryXpp3Writer writer = new ArchetypeRegistryXpp3Writer();
        Writer out = WriterFactory.newXmlWriter( archetypeRegistryFile );

        try
        {
            writer.write( out, archetypeRegistry );
        }
        finally
        {
            IOUtil.close( out );
        }
View Full Code Here

TOP

Related Classes of org.apache.maven.archetype.registry.io.xpp3.ArchetypeRegistryXpp3Reader

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.