Package org.apache.avalon.repository.provider

Examples of org.apache.avalon.repository.provider.BlockManifest


         try
         {
             URL jurl = new URL( "jar:" + url.toString() + "!/" );
             JarURLConnection connection =
               (JarURLConnection) jurl.openConnection();
             BlockManifest manifest =
               new DefaultBlockManifest( connection.getManifest() );
             final String group = manifest.getBlockGroup();

             buffer.append( "\nBlock Group: " + group );
             final File root = new File( m_base, group );
             buffer.append( "\nLocal target: " + root );
             JarFile jar = connection.getJarFile();
View Full Code Here

TOP

Related Classes of org.apache.avalon.repository.provider.BlockManifest

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.