diff --git a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md
index 6712ac3a..add846f9 100644
--- a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md
+++ b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/README.md
@@ -147,8 +147,9 @@ mvn clean package -Pudf-native-examples
The build will automatically:
- Extract `libcudf.so` from older rapids-4-spark jars or reconstruct it from
the chunk-manifest representation used by newer jars
-- Read the embedded `spark-rapids-jni` and `cudf-java` version metadata from the jar
-- Download the matching `spark-rapids-jni` `cudf-pins` files
+- Read the embedded `cudf-spark-jni` and `cudf-java` version metadata from
+ the jar
+- Download the matching `cudf-spark-jni` `cudf-pins` files
- Clone the cuDF repository at the revision recorded in the jar
- Configure rapids-cmake with the matching `rapids-cmake` sha and package override file
- Build only your UDF native code against the prebuilt library
@@ -165,7 +166,7 @@ library.
When changing the rapids-4-spark jar version, rebuild the native UDFs with
matching cuDF/RMM/CCCL headers and libraries. In prebuilt mode, the Maven build
-derives those native dependency pins from the `spark-rapids-jni` revision
+derives those native dependency pins from the `cudf-spark-jni` revision
recorded in the jar. After changing jar versions, remove `target/native-deps`,
`target/cudf-repo`, `target/cudf-pins`, and `target/cpp-build` before
rebuilding so stale headers, pins, or libraries are not reused.
diff --git a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/pom.xml b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/pom.xml
index 0896466c..1eae9d4b 100644
--- a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/pom.xml
+++ b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/pom.xml
@@ -402,7 +402,7 @@
-
diff --git a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/resolve-jni-cudf-pins.sh b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/resolve-jni-cudf-pins.sh
index 12bc60a7..5f7a8a4d 100755
--- a/examples/UDF-Examples/RAPIDS-accelerated-UDFs/resolve-jni-cudf-pins.sh
+++ b/examples/UDF-Examples/RAPIDS-accelerated-UDFs/resolve-jni-cudf-pins.sh
@@ -87,7 +87,7 @@ download_file() {
fi
}
-JNI_INFO="spark-rapids-jni-version-info.properties"
+JNI_INFO="cudf-spark-jni-version-info.properties"
CUDF_INFO="cudf-java-version-info.properties"
JNI_REVISION="$(read_property_from_jar "$JNI_INFO" revision || true)"
@@ -95,7 +95,7 @@ JNI_URL="$(read_property_from_jar "$JNI_INFO" url || true)"
CUDF_REVISION="$(read_property_from_jar "$CUDF_INFO" revision || true)"
if [ -z "$JNI_REVISION" ] || [ -z "$JNI_URL" ]; then
- echo "ERROR: Failed to read spark-rapids-jni revision/url from $JAR_PATH" >&2
+ echo "ERROR: Failed to read cudf-spark-jni revision/url from $JAR_PATH" >&2
echo "Expected $JNI_INFO in the jar." >&2
exit 1
fi
@@ -108,7 +108,7 @@ fi
RAW_BASE="$(normalize_github_raw_base "$JNI_URL")"
if [ -z "$RAW_BASE" ]; then
- echo "ERROR: Unsupported spark-rapids-jni URL for automatic pin lookup: $JNI_URL" >&2
+ echo "ERROR: Unsupported cudf-spark-jni URL for automatic pin lookup: $JNI_URL" >&2
echo "Only github.com URLs can be resolved automatically." >&2
exit 1
fi
@@ -161,14 +161,14 @@ download_file "https://raw.githubusercontent.com/rapidsai/rapids-cmake/$RAPIDS_C
cat > "$PROPERTIES_FILE" <