
org.testcontainers.containers.SolrContainerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr Show documentation
Show all versions of solr Show documentation
Isolated container management for Java code testing
package org.testcontainers.containers;
import lombok.Data;
import java.net.URL;
@Data
public class SolrContainerConfiguration {
private boolean zookeeper = true;
private String collectionName = "dummy";
private String configurationName;
private URL solrConfiguration;
private URL solrSchema;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy