com.ghunteranderson.nexus.model.Repository 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.Map;
import lombok.Data;
@Data
public class Repository {
private String name;
private String format;
private String type;
private String url;
@SuppressWarnings("rawtypes")
private Map attributes;
}