![JAR search and dependency download from the Maven repository](/logo.png)
net.java.trueupdate.artifact.maven.ci.MavenParametersCi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trueupdate-artifact-maven Show documentation
Show all versions of trueupdate-artifact-maven Show documentation
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 Maven parameters.
*
* @author Christian Schlichtherle
*/
@SuppressWarnings("PublicField")
//@XmlRootElement(name = "repositories")
@XmlType(name = "MavenParameters", propOrder = { "local", "remotes" })
public final class MavenParametersCi {
@XmlElement(required = true)
public LocalRepositoryCi local;
@XmlElement(name = "remote")
public RemoteRepositoryCi[] remotes;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy