Examples of ArchetypeRegistryXpp3Writer


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

    }

    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
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.