
org.testcontainers.containers.Neo4jLabsPlugin Maven / Gradle / Ivy
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy