- https://foldright.io/cffu/apidocs/${project.version}/
+ https://foldright.io/api-docs/cffu/${project.version}/
file://${javadoc.package.list.dir}/cffu/package-list
diff --git a/cffu-ttl-executor-wrapper/README.md b/cffu-ttl-executor-wrapper/README.md
index 8fbcce53..72c8bdf9 100644
--- a/cffu-ttl-executor-wrapper/README.md
+++ b/cffu-ttl-executor-wrapper/README.md
@@ -18,7 +18,7 @@ For `Maven` projects:
io.foldright
cffu-ttl-executor-wrapper
runtime
- 1.0.0-Alpha3
+ 1.0.0-Alpha4
```
@@ -26,12 +26,12 @@ For `Gradle` projects:
```groovy
// Gradle Kotlin DSL
-runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha3")
+runtimeOnly("io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha4")
```
```groovy
// Gradle Groovy DSL
-runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha3'
+runtimeOnly 'io.foldright:cffu-ttl-executor-wrapper:1.0.0-Alpha4'
```
`cffu-ttl-executor-wrapper` has published to maven central, find the latest version at
diff --git a/scripts/maven_deploy.sh b/scripts/maven_deploy.sh
index 2a132a50..35ef93e8 100755
--- a/scripts/maven_deploy.sh
+++ b/scripts/maven_deploy.sh
@@ -9,9 +9,11 @@ jvu::switch_to_jdk 21
########################################
# integration test
########################################
-rm -rf "$HOME/.m2/repository/io/foldright"/cffu*
-cu::log_then_run scripts/integration_test
-cu::log_then_run demos/scripts/integration_test
+if [ "${1:-}" = -it ]; then
+ rm -rf "$HOME/.m2/repository/io/foldright"/cffu*
+ cu::log_then_run scripts/integration_test
+ cu::log_then_run demos/scripts/integration_test
+fi
########################################
# maven deploy
diff --git a/src/main/javadoc/overview.html b/src/main/javadoc/overview.html
index 52abd0e8..b1acb13f 100644
--- a/src/main/javadoc/overview.html
+++ b/src/main/javadoc/overview.html
@@ -6,7 +6,5 @@
a tiny sidekick library for
CompletableFuture
to improve user experience and reduce misuse.
-The CF-Fu GitHub repo
- also include the best practice/traps guide 📚 for CompletableFuture
💗.