use of org.neo4j.kernel.impl.proc.JarBuilder in project neo4j by neo4j.
the class ProcedureIT method setUp.
@Before
public void setUp() throws IOException {
exceptionsInProcedure.clear();
new JarBuilder().createJarFor(plugins.newFile("myProcedures.jar"), ClassWithProcedures.class);
new JarBuilder().createJarFor(plugins.newFile("myFunctions.jar"), ClassWithFunctions.class);
db = new TestGraphDatabaseFactory().newImpermanentDatabaseBuilder().setConfig(plugin_dir, plugins.getRoot().getAbsolutePath()).newGraphDatabase();
}
use of org.neo4j.kernel.impl.proc.JarBuilder in project neo4j by neo4j.
the class UserAggregationFunctionIT method setUp.
@Before
public void setUp() throws IOException {
new JarBuilder().createJarFor(plugins.newFile("myFunctions.jar"), ClassWithFunctions.class);
db = new TestGraphDatabaseFactory().newImpermanentDatabaseBuilder().setConfig(GraphDatabaseSettings.plugin_dir, plugins.getRoot().getAbsolutePath()).newGraphDatabase();
}
use of org.neo4j.kernel.impl.proc.JarBuilder in project neo4j by neo4j.
the class UserFunctionIT method setUp.
@Before
public void setUp() throws IOException {
exceptionsInFunction.clear();
new JarBuilder().createJarFor(plugins.newFile("myFunctions.jar"), ClassWithFunctions.class);
db = new TestGraphDatabaseFactory().newImpermanentDatabaseBuilder().setConfig(GraphDatabaseSettings.plugin_dir, plugins.getRoot().getAbsolutePath()).newGraphDatabase();
}
Aggregations