dongjoon-hyun opened a new pull request #24824: [SPARK-27979][BUILD] Remove 
deprecated `--force` option in `build/mvn` and `run-tests.py`
URL: https://github.com/apache/spark/pull/24824
 
 
   ## What changes were proposed in this pull request?
   
   Since Apache Spark 2.0.0, SPARK-14867 deprecated `--force` option and made 
it ignored. This PR cleans up the related code completely at 3.0.0.
   
   **BEFORE (Jenkins)**
   ```
   build/mvn --force -DzincPort=3374 -DskipTests -Phadoop-2.7 -Pyarn -Phive 
-Phive-thriftserver -Pkinesis-asl -Pmesos clean package
   WARNING: '--force' is deprecated and ignored.
   ...
   build/mvn --force -DzincPort=3374 -Phadoop-2.7 -Pyarn -Phive 
-Phive-thriftserver -Pkinesis-asl -Pmesos --fail-at-end test
   WARNING: '--force' is deprecated and ignored.
   ```
   
   **AFTER (Jenkins)**
   ```
   build/mvn -DzincPort=3374 -DskipTests -Phadoop-2.7 -Pyarn -Phive 
-Phive-thriftserver -Pkinesis-asl -Pmesos clean package
   ...
   build/mvn -DzincPort=3374 -Phadoop-2.7 -Pyarn -Phive -Phive-thriftserver 
-Pkinesis-asl -Pmesos --fail-at-end test
   ```
   
   ## How was this patch tested?
   
   Manually check the Jenkins logs.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to