-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR introduces necessary changes to make the `assembleWasabiDebug` pass when using vendored `fluxc` and `login` modules. Among others, this PR: - replaces coordinates of `fluxc` and `login` to point to local modules - updates dependencies and adds missing ones for vendored modules - unifies JVM version - adds necessary dependencies - fixes minor code issues, forced by Kotlin update on vendored codebase
- Loading branch information
Showing
14 changed files
with
265 additions
and
259 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
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
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 |
---|---|---|
@@ -1,26 +1,11 @@ | ||
plugins { | ||
id "java" | ||
alias(sharedLibs.plugins.automattic.publishToS3) | ||
} | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
sourceCompatibility libs.versions.java.get() | ||
targetCompatibility libs.versions.java.get() | ||
|
||
withSourcesJar() | ||
withJavadocJar() | ||
} | ||
|
||
project.afterEvaluate { | ||
publishing { | ||
publications { | ||
FluxCAnnotationsPublication(MavenPublication) { | ||
from components.java | ||
|
||
groupId "org.wordpress.fluxc" | ||
artifactId "fluxc-annotations" | ||
// version is set by 'publish-to-s3' plugin | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.