You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ship cassandra-stress jar with elassandra (strapdata#19)
* integrate cassandra ant into gradle
* add a CASSANDRA_JAVA_HOME var to select the jdk used to build cassandra
* fix packaging filterhack applied to wrong binary files
* update contributing doc
* update cassandra submodule
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -52,9 +52,18 @@ When cloning Elassandra, use **git clone --recurse-submodules https://github.com
52
52
53
53
If you forgot the **--recurse-submodules** when cloning, you can also fetch the cassandra submodule with **git submodule update --init** and **git checkout cassandra-3.x-strapdata** to set the strapdata branch.
54
54
55
-
Then, to build from sources:
56
-
* Elassandra v5.x: run **mvn clean packages -DskipTests**.
57
-
* Elassandra v6.x: run **gradle clean distribution:deb:assemble -Dbuild.snapshot=false**.
55
+
Then, to build from sources:
56
+
57
+
* Elassandra v5.x:
58
+
59
+
gradle clean assemble -Dbuild.snapshot=false
60
+
61
+
62
+
* Elassandra v6.x:
63
+
64
+
export JAVA_HOME=/path/to/jdk-10
65
+
export CASSANDRA_JAVA_HOME=/path/to/jdk-8
66
+
./gradlew clean assemble -Dbuild.snapshot=false
58
67
59
68
Note: For elassandra v6.X, javadoc task failed due to [https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8194281](https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8194281).
0 commit comments