Conversation
|
Hmm I notice we do use Thoughts? @enebo @kachick @mkristian |
|
I feel like abstracting this is not helpful. If you are a maven user 'mvn' is a known thing. Seeing ./mvnw for them will know they can just type 'mvn'. If not then possibly just using ./mvnw everywhere will help the non-maven users more. |
|
for me using |
|
@mkristian ah yeah good point. Another thing a maven user may figure out but a new user will likely get tripped up on. |
|
Thanks for your reply. After changing mvn version 3.2.1 to 3.3.9, it now works. I think it's better to clarify the mvn version. diff --git a/BUILDING.md b/BUILDING.md
index ea56d7b2cc..d778304133 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -5,7 +5,7 @@ Prerequisites:
* A [Java 8-compatible (or higher) Java development kit (JDK)](http://www.oracle.com/technetwork/java/javase/downloads/index.html).
* If `JAVA_HOME` is not set on Mac OS X: `export JAVA_HOME=$(/usr/libexec/java_home)`
-* [Maven](https://maven.apache.org/download.cgi) 3+ (Maven Wrapper provided with `./mvnw`)
+* [Maven](https://maven.apache.org/download.cgi) 3.3.0+ (Maven Wrapper provided with `./mvnw`)
* [Apache Ant](https://ant.apache.org/bindownload.cgi) 1.8+ (see https://github.com/jruby/jruby/issues/2236)
* [Make](https://www.gnu.org/software/make/) and a C++ compiler for installing the jruby-launcher gem |
|
@k77ch7 Yes I think that is a better option. We only mention If you are ok with it, I will commit your proposed version-update patch with attribution and close this PR. Ok? |
|
@headius It’s OK. |
|
Committed the minimal version update in 9970478. Thanks! |
Following commands does not work for me.
mvn -Pbootstrapmvn -Pbootstrap-no-launchermvn -pl coreI guess using ./mvn instead of mvn is right.
My Env