com.lazerycode.jmeter.configuration.RepositoryConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-maven-plugin Show documentation
Show all versions of jmeter-maven-plugin Show documentation
A plugin to allow you to run JMeter tests with Maven.
package com.lazerycode.jmeter.configuration;
import org.eclipse.aether.repository.RemoteRepository;
import static org.eclipse.aether.repository.RemoteRepository.Builder;
/**
* Allows you to specify additional remote repositories
*
* Configuration in pom.xml:
*
*
* {@code
*
*
*
*
*
* }
*
*
* @author Mark Collin
*/
public class RepositoryConfiguration {
private String id;
private String type;
private String url;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public RemoteRepository getRemoteRepository() {
return new Builder(id, type, url).build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy