
com.github.rahulsom.nexusmonitor.Repository.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NexusMonitor Show documentation
Show all versions of NexusMonitor Show documentation
Notify on new releases from Sonatype Nexus
The newest version!
package com.github.rahulsom.nexusmonitor
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
String toString() {
return "com.github.rahulsom.nexusmonitor.Repository{" +
"name='" + name + '\'' +
", feedUrl='" + feedUrl + '\'' +
", username='" + username + '\'' +
", password='" + password + '\'' +
", repoUrl='" + repoUrl + '\'' +
", recipients=" + recipients +
'}'
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy