hulsom.nexus-monitor.1.0.source-code.Repository.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nexus-monitor Show documentation
Show all versions of nexus-monitor Show documentation
NexusMonitor allows you to send custom email on artifact deploys
The newest version!
import groovy.transform.CompileStatic
/**
* Created with IntelliJ IDEA.
* User: rahulsomasunderam
* Date: 10/10/13
* Time: 8:05 AM
* To change this template use File | Settings | File Templates.
*/
@CompileStatic
class Repository {
String name
String feedUrl
String username = 'admin'
String password = 'admin123'
String repoUrl
List recipients
public java.lang.String toString() {
return "Repository{" +
"name='" + name + '\'' +
", feedUrl='" + feedUrl + '\'' +
", username='" + username + '\'' +
", password='" + password + '\'' +
", repoUrl='" + repoUrl + '\'' +
", recipients=" + recipients +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy