org.testcontainers.containers.Neo4jLabsPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j Show documentation
Show all versions of neo4j Show documentation
Isolated container management for Java code testing
package org.testcontainers.containers;
/**
* Reflects a plugin from the official Neo4j 4.4.
* Neo4j Labs Plugin list.
* There might be plugins not supported by your selected version of Neo4j.
*
* @deprecated Please use {@link Neo4jContainer#withLabsPlugins(String...)} with the matching plugin name for your Neo4j version.
* Due to some renaming of the (Docker image) plugin names, there is no naming consistency across versions.
* The plugins are listed here
*
*/
public enum Neo4jLabsPlugin {
APOC("apoc"),
APOC_CORE("apoc-core"),
BLOOM("bloom"),
STREAMS("streams"),
GRAPH_DATA_SCIENCE("graph-data-science"),
NEO_SEMANTICS("n10s");
final String pluginName;
Neo4jLabsPlugin(String pluginName) {
this.pluginName = pluginName;
}
}