You can download titan-cassandra-0.5.4.jar in this page.
Open Source
titan-cassandra-0.5.4.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.thinkaurelius.titan/titan-cassandra/pom.properties META-INF/maven/com.thinkaurelius.titan/titan-cassandra/pom.xml com.thinkaurelius.titan.diskstorage.cassandra.AbstractCassandraStoreManager.class com.thinkaurelius.titan.diskstorage.cassandra.CLevel.class com.thinkaurelius.titan.diskstorage.cassandra.CLevelInterface.class com.thinkaurelius.titan.diskstorage.cassandra.CassandraTransaction.class com.thinkaurelius.titan.diskstorage.cassandra.astyanax.AstyanaxKeyColumnValueStore.class com.thinkaurelius.titan.diskstorage.cassandra.astyanax.AstyanaxStoreManager.class com.thinkaurelius.titan.diskstorage.cassandra.embedded.CassandraEmbeddedKeyColumnValueStore.class com.thinkaurelius.titan.diskstorage.cassandra.embedded.CassandraEmbeddedStoreManager.class com.thinkaurelius.titan.diskstorage.cassandra.thrift.CassandraThriftKeyColumnValueStore.class com.thinkaurelius.titan.diskstorage.cassandra.thrift.CassandraThriftStoreManager.class com.thinkaurelius.titan.diskstorage.cassandra.thrift.thriftpool.CTConnection.class com.thinkaurelius.titan.diskstorage.cassandra.thrift.thriftpool.CTConnectionFactory.class com.thinkaurelius.titan.diskstorage.cassandra.thrift.thriftpool.CTConnectionPool.class com.thinkaurelius.titan.diskstorage.cassandra.utils.CassandraDaemonWrapper.class com.thinkaurelius.titan.diskstorage.cassandra.utils.CassandraHelper.class org.apache.cassandra.thrift.TBinaryProtocol.class
titan-cassandra-0.5.4.pom file content.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan</artifactId> <version>0.5.4</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>titan-cassandra</artifactId> <name>Titan-Cassandra: Distributed Graph Database</name> <url>http://thinkaurelius.github.com/titan/</url> <properties> <astyanax.version>1.56.48</astyanax.version> <jamm.version>0.2.5</jamm.version> <jamm.group>com.github.stephenc</jamm.group> <dependency.plugin.version>2.8</dependency.plugin.version> <test.extra.jvm.opts>-javaagent:${basedir}/target/jamm-${jamm.version}.jar</test.extra.jvm.opts> <default.test.jvm.opts>-Xms256m -Xmx1280m -ea -XX:+HeapDumpOnOutOfMemoryError ${test.extra.jvm.opts}</default.test.jvm.opts> <mem.jvm.opts>-Xms256m -Xmx768m -ea -XX:+HeapDumpOnOutOfMemoryError ${test.extra.jvm.opts}</mem.jvm.opts> <top.level.basedir>${basedir}/..</top.level.basedir> </properties> <!-- Libraries --> <dependencies> <dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-core</artifactId> </dependency> <dependency> <groupId>com.carrotsearch</groupId> <artifactId>junit-benchmarks</artifactId> </dependency> <dependency> <groupId>com.carrotsearch.randomizedtesting</groupId> <artifactId>randomizedtesting-runner</artifactId> </dependency> <!-- JNA is not required to run Cassandra, but it improves efficiency of certain of Cassandra's filesystem and memory operations. DataStax describes JNA as "required for production installations": http://www.datastax.com/docs/1.2/install/install_jre --> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>${jna.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.cassandra</groupId> <artifactId>cassandra-all</artifactId> <!-- The version is controlled in <dependencyManagement> in the parent pom --> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> </dependency> <dependency> <groupId>com.netflix.astyanax</groupId> <artifactId>astyanax-core</artifactId> <version>${astyanax.version}</version> </dependency> <dependency> <groupId>com.netflix.astyanax</groupId> <artifactId>astyanax-thrift</artifactId> <version>${astyanax.version}</version> </dependency> <dependency> <groupId>com.netflix.astyanax</groupId> <artifactId>astyanax-cassandra</artifactId> <version>${astyanax.version}</version> </dependency> <dependency> <groupId>com.netflix.astyanax</groupId> <artifactId>astyanax-recipes</artifactId> <version>${astyanax.version}</version> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <testResources> <testResource> <directory>${basedir}/src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>filter-cassandra-bop-config</id> <phase>process-test-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/cassandra/conf/localhost-bop</outputDirectory> <filters> <filter>${basedir}/config/cassandra-filters/localhost-bop.properties</filter> </filters> <resources> <resource> <directory>${basedir}/config/cassandra</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> <execution> <id>filter-cassandra-rp-config</id> <phase>process-test-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/cassandra/conf/localhost-rp</outputDirectory> <filters> <filter>${basedir}/config/cassandra-filters/localhost-rp.properties</filter> </filters> <resources> <resource> <directory>${basedir}/config/cassandra</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> <execution> <id>filter-cassandra-murmur-ssl-config</id> <phase>process-test-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/cassandra/conf/localhost-murmur-ssl</outputDirectory> <filters> <filter>${basedir}/config/cassandra-filters/localhost-murmur-ssl.properties</filter> </filters> <resources> <resource> <directory>${basedir}/config/cassandra</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> <execution> <!-- Need this to avoid corrupting the test keystore with nonsensical macro replacements --> <id>filter-cassandra-murmur-ssl-config-static</id> <phase>process-test-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/cassandra/conf/localhost-murmur-ssl</outputDirectory> <resources> <resource> <directory>${basedir}/config/static</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <!-- Run by "mvn test" --> <id>default-test</id> <phase>none</phase> </execution> <execution> <!-- Run by "mvn org.apache.maven.plugins:maven-surefire-plugin:test" Sonar does this when running JaCoCo and provides no configuration option to change its behavior. Define a safe configuration for JaCoCo to use when run by Sonar. This doesn't have to be fast, since it's only used for dynamic analysis, but it does have to cover all the tests. --> <id>default-cli</id> <phase>none</phase> <configuration> <includes> <include>Nope.java</include> </includes> <exclude> <exclude>**/*</exclude> </exclude> <parallel /> <reuseForks>false</reuseForks> <threadCount>1</threadCount> <perCoreThreadCount>false</perCoreThreadCount> <runOrder>random</runOrder> </configuration> </execution> <execution> <id>bop-test</id> <goals> <goal>test</goal> </goals> <phase>test</phase> <configuration> <argLine>${default.test.jvm.opts} -Dtest.cassandra.confdir=${project.build.directory}/cassandra/conf/localhost-bop -Dtest.cassandra.datadir=${project.build.directory}/cassandra/data/localhost-bop</argLine> <excludedGroups>${test.excluded.groups},com.thinkaurelius.titan.testcategory.UnorderedKeyStoreTests,com.thinkaurelius.titan.testcategory.SerialTests,com.thinkaurelius.titan.testcategory.CassandraSSLTests</excludedGroups> <groups /> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <parallel>classes</parallel> <perCoreThreadCount>true</perCoreThreadCount> <threadCount>2</threadCount> <runOrder>random</runOrder> <skip>${test.skip.ordered}</skip> </configuration> </execution> <execution> <id>rp-test</id> <goals> <goal>test</goal> </goals> <phase>test</phase> <configuration> <argLine>${default.test.jvm.opts} -Dtest.cassandra.confdir=${project.build.directory}/cassandra/conf/localhost-rp -Dtest.cassandra.datadir=${project.build.directory}/cassandra/data/localhost-rp</argLine> <excludedGroups>${test.excluded.groups},com.thinkaurelius.titan.testcategory.OrderedKeyStoreTests,com.thinkaurelius.titan.testcategory.SerialTests,com.thinkaurelius.titan.testcategory.CassandraSSLTests</excludedGroups> <groups /> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <parallel>classes</parallel> <perCoreThreadCount>true</perCoreThreadCount> <threadCount>2</threadCount> <runOrder>random</runOrder> <skip>${test.skip.unordered}</skip> </configuration> </execution> <execution> <id>ssl-test</id> <goals> <goal>test</goal> </goals> <phase>test</phase> <configuration> <argLine>${default.test.jvm.opts} -Dtest.cassandra.confdir=${project.build.directory}/cassandra/conf/localhost-murmur-ssl -Dtest.cassandra.datadir=${project.build.directory}/cassandra/data/localhost-murmur-ssl</argLine> <excludedGroups /> <groups>com.thinkaurelius.titan.testcategory.CassandraSSLTests</groups> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <parallel>classes</parallel> <perCoreThreadCount>true</perCoreThreadCount> <threadCount>2</threadCount> <runOrder>random</runOrder> <skip>${test.skip.ssl}</skip> </configuration> </execution> <execution> <id>serial-test</id> <goals> <goal>test</goal> </goals> <phase>test</phase> <configuration> <argLine>${default.test.jvm.opts} -Dtest.cassandra.confdir=${project.build.directory}/cassandra/conf/localhost-rp -Dtest.cassandra.datadir=${project.build.directory}/cassandra/data/localhost-rp</argLine> <excludedGroups /> <groups>com.thinkaurelius.titan.testcategory.SerialTests</groups> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <parallel>none</parallel> <perCoreThreadCount>false</perCoreThreadCount> <threadCount>1</threadCount> <runOrder>alphabetical</runOrder> <skip>${test.skip.serial}</skip> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <!-- Provide Java Memory Meter for Cassandra. Cassandra logs warnings if JAMM is not available. Also, production Cassandra deployments will probably use JAMM, so we might as well include it in our test configuration. --> <execution> <id>copy</id> <phase>process-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${jamm.group}</groupId> <artifactId>jamm</artifactId> <version>${jamm.version}</version> <outputDirectory>${project.build.directory}</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>pack-test-jar</id> <!-- prepare-package instead of package forces it to get signed --> <phase>prepare-package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>coverage</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <test.extra.jvm.opts>${jacoco.opts} -javaagent:${basedir}/target/jamm-${jamm.version}.jar</test.extra.jvm.opts> </properties> </profile> </profiles> </project>
<dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-cassandra</artifactId> <version>0.5.4</version> </dependency>
If you think the following titan-cassandra-0.5.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download titan-cassandra-0.5.4.jar file