Skip to content
This repository has been archived by the owner on Nov 22, 2017. It is now read-only.

Commit

Permalink
fixed cassandra-dist task with right classname and spelling of velocity
Browse files Browse the repository at this point in the history
  • Loading branch information
ceocoder committed Jun 11, 2011
1 parent ec60b33 commit c87b865
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
<!-- copy over all the new jar files --> <!-- copy over all the new jar files -->


<copy todir="${cassandra}/lib"> <copy todir="${cassandra}/lib">
<fileset dir="${lib}" includes="jetty*.jar,servlet*.jar,jsp*.jar, solr*.jar, lucene*.jar, commons*.jar, veclocity*.jar, snappy*.jar" /> <fileset dir="${lib}" includes="jetty*.jar,servlet*.jar,jsp*.jar, solr*.jar, lucene*.jar, commons*.jar, velocity*.jar, snappy*.jar" />
<fileset dir="${basedir}" includes="solandra.jar" /> <fileset dir="${basedir}" includes="solandra.jar" />
</copy> </copy>


Expand All @@ -288,7 +288,7 @@


<replace file="${cassandra}/bin/solandra" failOnNoReplacements="true"> <replace file="${cassandra}/bin/solandra" failOnNoReplacements="true">
<replacetoken>classname="org.apache.cassandra.thrift.CassandraDaemon"</replacetoken> <replacetoken>classname="org.apache.cassandra.thrift.CassandraDaemon"</replacetoken>
<replacevalue>classname="solandra.CassandraStarter"</replacevalue> <replacevalue>classname="solandra.SolandraServer"</replacevalue>
</replace> </replace>


<chmod dir="${cassandra}/bin" perm="755" includes="solandra" /> <chmod dir="${cassandra}/bin" perm="755" includes="solandra" />
Expand All @@ -307,4 +307,4 @@
<arg line="lucandra.thrift" /> <arg line="lucandra.thrift" />
</exec> </exec>
</target> </target>
</project> </project>

0 comments on commit c87b865

Please sign in to comment.