Skip to content

Commit 7af0819

Browse files
committed
Drop M3_HOME as we will hardly ever migrate to M3
1 parent f339a46 commit 7af0819

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

.envrc-template

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,5 @@ export DEPVIS_HOME=/path/to/depvis
3838
# Note: M4_HOME is added to PATH in m4/compile.sh and m4/run.sh scripts, not globally
3939
export M4_HOME=/path/to/maven4
4040

41-
# Path to Maven 3 (optional, for future m3/ migration comparisons)
42-
# SDKMAN Users: Use 'sdk install maven 3.9.11' then 'sdk home maven 3.9.11'
43-
# Optional
44-
export M3_HOME=/path/to/maven3
45-
4641
# Add Java to PATH to ensure it is the first Java version found by any shell execution
4742
export PATH="$JAVA_HOME/bin:$PATH"

CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,6 @@ Before running any examples, `jigsaw-examples/env.sh` must be configured with:
524524
- `JAVA8_HOME`: Only needed for `example_compile-target-jdk8`
525525
- `JAVA17_HOME`: Only needed for `example_gradle-project` (Gradle 9.x requires JDK 17+)
526526
- `M4_HOME`: Path to Maven 4 (required for `m4/` migration subdirectories)
527-
- `M3_HOME`: Path to Maven 3 (optional, for future `m3/` migration comparisons)
528527
- `GRAPHVIZ_HOME`: Path to GraphViz 2.38+ for module visualization
529528
- `DEPVIS_HOME`: Path to depvis tool (https://github.com/accso/java9-jigsaw-depvis)
530529

jigsaw-examples/env.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ set -eu -o pipefail
2525
# Note: M4_HOME/bin is added to PATH in m4/ scripts, not here
2626
[ -z "${M4_HOME:-}" ] && export M4_HOME=TODO/path/to/maven4/goes/here
2727

28-
# Path to Maven 3 (optional, for future m3/ migration comparisons)
29-
# SDKMAN Users: Use 'sdk install maven 3.9.11' or similar
30-
[ -z "${M3_HOME:-}" ] && export M3_HOME=TODO/path/to/maven3/goes/here
31-
3228
# Path to GraphViz >=2.38
3329
[ -z "${GRAPHVIZ_HOME:-}" ] && export GRAPHVIZ_HOME=TODO/path/to/graphviz2.38/goes/here
3430
# Path to DepVis , see https://github.com/accso/java9-jigsaw-depvis

0 commit comments

Comments
 (0)