Re: JanusGraph Bare Minimum
Rafael Fernandes <luizr...@...>
Hi Kim, quite simple really, just get the core and choose one of the supported DB backends. of course, a lot of required dependencies will be downloaded but no way around it right. here is how it looks like if you use maven (add this to your pom.xml). <dependency> <groupId>org.janusgraph</groupId> <artifactId>janusgraph-core</artifactId> <version>0.1.1</version> </dependency> let's say you'd use cassandra as your backend, add this as well. <dependency> <groupId>org.janusgraph</groupId> <artifactId>janusgraph-cassandra</artifactId> <version>0.1.1</version> </dependency> Rafael Fernandes On Monday, August 14, 2017 at 10:15:01 AM UTC-4, ka...@... wrote:
|
|