Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "HowToContribute" page has been changed by StaffanEricsson. The comment on this change is: Updated location of the CassandraDaemon to reflect current status. http://wiki.apache.org/cassandra/HowToContribute?action=diff&rev1=19&rev2=20 -------------------------------------------------- == IDE == * [[RunningCassandraInIDEA]] * IntelliJ Project Settings: - * Main Class: org.apache.cassandra.service.CassandraDaemon + * Main Class for Thrift: org.apache.cassandra.thrift.CassandraDaemon (Used to be org.apache.cassandra.service.CassandraDaemon ) + * Main Class for Avro: org.apache.cassandra.avro.CassandraDaemon (Exprimental, introduced in 0.6) * VM Parameters: -ea -Xmx1G -Dstorage-config=conf -Dcassandra-foreground == Ivy == Cassandra uses ivy [http://ant.apache.org/ivy/] to fetch compile-time dependencies. Ivy needs to be able to access the web servers that host the dependencies (typically maven repositories). If your internet access is proxied, ivy (ant, really) needs to know about it. There are two ways to accomplish this: + * Include `-Dhttp.proxyHost=myproxy -Dhttp.proxyPort=3128` in the `ANT_OPTS` environment variable. See the ant wiki [http://wiki.apache.org/ant/TheElementsOfAntStyle] for more information about `ANT_OPTS`. * Specify these values on the command line: `ant clean build -Dhttp.proxyHost=myproxy -Dhttp.proxyPort=3128`
