-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compile task depends (GoogleCloudPlatform#49)
* upgrade to gradle 4.0 * Fix generated source for non-java jvm languages Generated source was not being recognized by non-java languages (like kotlin) because 1. Source generation wasn't configured to explicitly happen before any compile task except the java one. Potentially other languages could initiate a compile without having first triggered source generation. 2. Configuring the java sourceSet happened too late (after evaluation) and other language plugins weren't being configured with our sourceSet modifications.
- Loading branch information
1 parent
4c78444
commit 0c16ca8
Showing
6 changed files
with
34 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,5 +53,5 @@ jar { | |
} | ||
|
||
task wrapper(type: Wrapper) { | ||
gradleVersion = '3.4.1' | ||
gradleVersion = '4.0' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Apr 26 14:12:21 EDT 2017 | ||
#Thu Jun 29 14:10:01 EDT 2017 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters