diff --git a/Java/README.md b/Java/README.md
index ffa1b75c..07964dd9 100644
--- a/Java/README.md
+++ b/Java/README.md
@@ -135,7 +135,7 @@ vector data point, scores the data point, and then updates the model with this
point. The program output appends a column of anomaly scores to the input:
```text
-$ java -cp core/target/randomcutforest-core-2.0.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
+$ java -cp core/target/randomcutforest-core-3.0-rc2.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
$ tail example_output.csv
-5.0029,0.0170,-0.0057,0.8129401629464965
-4.9975,-0.0102,-0.0065,0.6591046054520615
@@ -154,8 +154,8 @@ read additional usage instructions, including options for setting model
hyperparameters, using the `--help` flag:
```text
-$ java -cp core/target/randomcutforest-core-2.0.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
-Usage: java -cp target/random-cut-forest-2.0.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
+$ java -cp core/target/randomcutforest-core-3.0-rc2.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
+Usage: java -cp target/random-cut-forest-3.0-rc2.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
Compute scalar anomaly scores from the input rows and append them to the output rows.
@@ -217,14 +217,14 @@ framework. Build an executable jar containing the benchmark code by running
To invoke the full benchmark suite:
```text
-% java -jar benchmark/target/randomcutforest-benchmark-2.0.1-jar-with-dependencies.jar
+% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc2-jar-with-dependencies.jar
```
The full benchmark suite takes a long time to run. You can also pass a regex at the command-line, then only matching
benchmark methods will be executed.
```text
-% java -jar benchmark/target/randomcutforest-benchmark-2.0.1-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
+% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc2-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
```
[rcf-paper]: http://proceedings.mlr.press/v48/guha16.pdf
diff --git a/Java/benchmark/pom.xml b/Java/benchmark/pom.xml
index a5b4a828..4c3a38e6 100644
--- a/Java/benchmark/pom.xml
+++ b/Java/benchmark/pom.xml
@@ -6,7 +6,7 @@
software.amazon.randomcutforest
randomcutforest-parent
- 2.0.1
+ 3.0-rc2
randomcutforest-benchmark
diff --git a/Java/core/pom.xml b/Java/core/pom.xml
index 167ba1ed..4678cbb6 100644
--- a/Java/core/pom.xml
+++ b/Java/core/pom.xml
@@ -6,7 +6,7 @@
software.amazon.randomcutforest
randomcutforest-parent
- 2.0.1
+ 3.0-rc2
randomcutforest-core
diff --git a/Java/examples/pom.xml b/Java/examples/pom.xml
index 53046d35..c555080a 100644
--- a/Java/examples/pom.xml
+++ b/Java/examples/pom.xml
@@ -7,7 +7,7 @@
software.amazon.randomcutforest
randomcutforest-parent
- 2.0.1
+ 3.0-rc2
randomcutforest-examples
diff --git a/Java/parkservices/pom.xml b/Java/parkservices/pom.xml
index 2b6ad60a..b85d3020 100644
--- a/Java/parkservices/pom.xml
+++ b/Java/parkservices/pom.xml
@@ -6,7 +6,7 @@
software.amazon.randomcutforest
randomcutforest-parent
- 2.0.1
+ 3.0-rc2
randomcutforest-parkservices
diff --git a/Java/pom.xml b/Java/pom.xml
index 6dc77f26..c49ee405 100644
--- a/Java/pom.xml
+++ b/Java/pom.xml
@@ -4,7 +4,7 @@
software.amazon.randomcutforest
randomcutforest-parent
- 2.0.1
+ 3.0-rc2
pom
software.amazon.randomcutforest:randomcutforest
diff --git a/Java/serialization/pom.xml b/Java/serialization/pom.xml
index 283e3b7f..edc44742 100644
--- a/Java/serialization/pom.xml
+++ b/Java/serialization/pom.xml
@@ -7,7 +7,7 @@
software.amazon.randomcutforest
randomcutforest-parent
- 2.0.1
+ 3.0-rc2
randomcutforest-serialization
diff --git a/Java/testutils/pom.xml b/Java/testutils/pom.xml
index cb159006..b7942d0c 100644
--- a/Java/testutils/pom.xml
+++ b/Java/testutils/pom.xml
@@ -4,7 +4,7 @@
randomcutforest-parent
software.amazon.randomcutforest
- 2.0.1
+ 3.0-rc2
randomcutforest-testutils