Package org.apache.avalon.repository

Examples of org.apache.avalon.repository.Artifact


        Properties avalonWork =
          getLocalProperties( m_base, AVALON_PROPERTIES );
        m_cache = setupCache( cache, avalonSystem, avalonHome, avalonWork );
        m_hosts = setupHosts( hosts, avalonSystem, avalonHome, avalonWork );

        Artifact implementation = setupImplementation( artifact );
        ClassLoader parent = setupClassLoader( loader );

        //
        // Create the temporary directory to pull down files into
        //
View Full Code Here


        assertNotNull( manager ) ;
  
        Repository repository = manager.createRepository() ;
        assertNotNull( repository ) ;
       
        Artifact artifact = Artifact.createArtifact(
          "avalon-framework", "avalon-framework-api", "4.1.5" );
        URL url = repository.getResource( artifact );
        assertNotNull( "url", url );
    }
View Full Code Here

TOP

Related Classes of org.apache.avalon.repository.Artifact

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.