
org.codehaus.mevenide.netbeans.newproject.RemoteRepoProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nb-project Show documentation
Show all versions of nb-project Show documentation
Implementation of a Netbeans project backed by Maven2 POM files.
The newest version!
/*
* Copyright 2008 mkleint.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* under the License.
*/
package org.codehaus.mevenide.netbeans.newproject;
import java.util.ArrayList;
import java.util.List;
import org.codehaus.mevenide.indexer.api.NBVersionInfo;
import org.codehaus.mevenide.indexer.api.RepositoryInfo;
import org.codehaus.mevenide.indexer.api.RepositoryPreferences;
import org.codehaus.mevenide.indexer.api.RepositoryQueries;
import org.codehaus.mevenide.netbeans.api.archetype.Archetype;
import org.codehaus.mevenide.netbeans.api.archetype.ArchetypeProvider;
/**
*
* @author mkleint
*/
public class RemoteRepoProvider implements ArchetypeProvider {
public List getArchetypes() {
List lst = new ArrayList();
List infos = RepositoryPreferences.getInstance().getRepositoryInfos();
for (RepositoryInfo info : infos) {
if (RepositoryPreferences.LOCAL_REPO_ID.equals(info.getId())) {
continue;
}
List archs = RepositoryQueries.findArchetypes(info);
if (archs == null) {
continue;
}
for (NBVersionInfo art : archs) {
//TODO FINDout how to get contain matadata
// boolean ng = artifact.getFiles().contains("META-INF/maven/archetype-metadata.xml");
Archetype arch = ("maven-archetype".equalsIgnoreCase(art.getPackaging())) ? //NOI18N
new Archetype(true, true) : new Archetype();
arch.setArtifactId(art.getArtifactId());
arch.setGroupId(art.getGroupId());
arch.setVersion(art.getVersion());
arch.setName(art.getProjectName());
arch.setDescription(art.getProjectDescription());
arch.setRepository(info.getRepositoryUrl());
lst.add(arch);
}
}
return lst;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy