com.ghunteranderson.nexus.model.Asset 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 lombok.Data;
@Data
public class Asset {
private String downloadUrl;
private String path;
private String id;
private String repository;
private String format;
private Checksum checksum;
}