All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lazerycode.jmeter.configuration.RepositoryConfiguration Maven / Gradle / Ivy

There is a newer version: 3.8.0
Show newest version
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