Browse Source
* Introduce `gradlewAll` script to replace `*All` tasks since the approach used by the latter doesn't work since Gradle 6.0 and it's unclear when, if ever, it will work again ( see https://github.com/gradle/gradle/issues/11301). * Update release script and README given the above. * Update zinc to 1.3.5. * Update gradle-versions-plugin to 0.28.0. The major improvements in Gradle 6.0 to 6.3 are: - Improved incremental compilation for Scala - Support for Java 14 (although some Gradle plugins like spotBugs may need to be updated or disabled, will do that separately) - Improved scalac reporting, warnings are clearly marked as such, which is very helpful. Tested `gradlewAll` manually for the commands listed in the README and release script. For `uploadArchive`, I tested it with a local Maven repository. Reviewers: Manikumar Reddy <manikumar.reddy@gmail.com>pull/8499/merge
Ismael Juma
5 years ago
committed by
GitHub
7 changed files with 59 additions and 115 deletions
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME |
||||
distributionPath=wrapper/dists |
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip |
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip |
||||
zipStoreBase=GRADLE_USER_HOME |
||||
zipStorePath=wrapper/dists |
||||
|
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more |
||||
# contributor license agreements. See the NOTICE file distributed with |
||||
# this work for additional information regarding copyright ownership. |
||||
# The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
# (the "License"); you may not use this file except in compliance with |
||||
# the License. You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
# Convenient way to invoke a gradle command with all Scala versions supported |
||||
# by default |
||||
./gradlew "$@" -PscalaVersion=2.12 && ./gradlew "$@" -PscalaVersion=2.13 |
||||
|
Loading…
Reference in new issue