-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include Maven dependency in files.json #10719
Merged
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3f85e68
Use shared library when libapp.so is found
75351f2
Include Maven dependency in files.json
blasten e61bfdd
Simplify
blasten 3c1954c
Add python script that generates the POM file
blasten 3503efc
Typo
blasten 050e048
Add flag to indicate the destination directory
blasten 65ec3ba
Invoke script to generate POM file
1e3876a
Generate POM files for the embedding and for libflutter
1b9c3ff
Format
9b7feb6
Merge branch 'master' of github.com:blasten/engine into include_maven…
9b14045
Merge branch 'master' of github.com:flutter/engine into include_maven…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,10 +1,42 @@ | ||
{ | ||
"android_arch_lifecycle_common.jar": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/common/1.1.1/common-1.1.1.jar", | ||
"android_arch_lifecycle_common_java8.jar": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/common-java8/1.1.1/common-java8-1.1.1.jar", | ||
"android_arch_lifecycle_runtime.jar": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/runtime/1.1.1/runtime-1.1.1.aar", | ||
"android_arch_lifecycle_viewmodel.jar": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/viewmodel/1.1.1/viewmodel-1.1.1.aar", | ||
"android_support_fragment.jar": "https://dl.google.com/dl/android/maven2/com/android/support/support-fragment/28.0.0/support-fragment-28.0.0.aar", | ||
"android_support_v13.jar": "https://dl.google.com/dl/android/maven2/com/android/support/support-v13/28.0.0/support-v13-28.0.0.aar", | ||
"android_support_annotations.jar": "https://dl.google.com/dl/android/maven2/com/android/support/support-annotations/28.0.0/support-annotations-28.0.0.jar", | ||
"android_support_compat.jar": "https://dl.google.com/dl/android/maven2/com/android/support/support-compat/28.0.0/support-compat-28.0.0.aar" | ||
} | ||
[ | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/common/1.1.1/common-1.1.1.jar", | ||
"out_file_name": "android_arch_lifecycle_common.jar", | ||
"maven_dependency": "android.arch.lifecycle:common:1.1.1" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/common-java8/1.1.1/common-java8-1.1.1.jar", | ||
"out_file_name": "android_arch_lifecycle_common_java8.jar", | ||
"maven_dependency": "android.arch.lifecycle:common-java8:1.1.1" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/runtime/1.1.1/runtime-1.1.1.aar", | ||
"out_file_name": "android_arch_lifecycle_runtime.jar", | ||
"maven_dependency": "android.arch.lifecycle:runtime:1.1.1" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/android/arch/lifecycle/viewmodel/1.1.1/viewmodel-1.1.1.aar", | ||
"out_file_name": "android_arch_lifecycle_viewmodel.jar", | ||
"maven_dependency": "android.arch.lifecycle:viewmodel:1.1.1" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/com/android/support/support-fragment/28.0.0/support-fragment-28.0.0.aar", | ||
"out_file_name": "android_support_fragment.jar", | ||
"maven_dependency": "com.android.support:support-fragment:28.0.0" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/com/android/support/support-v13/28.0.0/support-v13-28.0.0.aar", | ||
"out_file_name": "android_support_v13.jar", | ||
"maven_dependency": "com.android.support:support-v13:28.0.0" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/com/android/support/support-annotations/28.0.0/support-annotations-28.0.0.jar", | ||
"out_file_name": "android_support_annotations.jar", | ||
"maven_dependency": "com.android.support:support-annotations:28.0.0" | ||
}, | ||
{ | ||
"url": "https://dl.google.com/dl/android/maven2/com/android/support/support-compat/28.0.0/support-compat-28.0.0.aar", | ||
"out_file_name": "android_support_compat.jar", | ||
"maven_dependency": "com.android.support:support-compat:28.0.0" | ||
} | ||
] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI I think long term we wanted these moved to CIPD instead of here. I may be remembering wrong, I thought I saw an issue from @dnfield about this but couldn't find it now. Either way this is fine for this patch though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be preferable to create CIPD packages for these and avoid using this script any further.