Package org.apache.archiva.web.xmlrpc.api.beans

Examples of org.apache.archiva.web.xmlrpc.api.beans.Artifact


       
        final BrowsingResults results = repoBrowsing.selectArtifactId( "", observableRepos, groupId, artifactId );
       
        for( final String version : results.getVersions() )
        {
            final Artifact artifact = new Artifact( "", groupId, artifactId, version, "pom" );
            //ArchivaArtifact pomArtifact = artifactDAO.getArtifact( groupId, artifactId, version, "", "pom",  );
            //Artifact artifact = new Artifact( "", groupId, artifactId, version, pomArtifact.getType() );
                          //pomArtifact.getModel().getWhenGathered() );
           
            artifacts.add( artifact );
View Full Code Here


        List<String> observableRepos = xmlRpcUserRepositories.getObservableRepositories();
       
        List<ArchivaProjectModel> dependees = repoBrowsing.getUsedBy( "", observableRepos, "org.apache.archiva", "archiva-test", "1.0" );
        for( ArchivaProjectModel model : dependees )
        {
            Artifact artifact =
                new Artifact( "", model.getGroupId(), model.getArtifactId(), model.getVersion(), "" );
                              //model.getWhenIndexed() );
            artifacts.add( artifact );
        }
       
        return artifacts;
View Full Code Here

TOP

Related Classes of org.apache.archiva.web.xmlrpc.api.beans.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.