com.ghunteranderson.nexus.model.Component Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-client Show documentation
Show all versions of rest-client Show documentation
A Java REST client for Nexus repository.
The newest version!
package com.ghunteranderson.nexus.model;
import java.util.List;
import lombok.Data;
@Data
public class Component {
private String id;
private String repository;
private String format;
private String group;
private String name;
private String version;
private List assets;
}