All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.java.trueupdate.artifact.maven.ci.RemoteRepositoryCi Maven / Gradle / Ivy

Go to download

Provides an artifact resolver which is based on a local Maven repository and some optional remote Maven repositories.

The newest version!
/*
 * Copyright (C) 2013 Schlichtherle IT Services & Stimulus Software.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.trueupdate.artifact.maven.ci;

import javax.xml.bind.annotation.*;

/**
 * Represents a remote repository.
 *
 * @author Christian Schlichtherle
 */
@XmlType(name = "RemoteRepository", propOrder = { })
@SuppressWarnings("PublicField")
public final class RemoteRepositoryCi {

    @XmlElement(defaultValue = "http://repo1.maven.org/maven2/")
    public String url;

    public String id, type;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy