I'm working in heavy secured company, the only possible way to reach pub.dev/packages is through nexus sonatype proxy, so I've set the pub_hosted_url to point nexus server, fetching versions working perfecty but after that pub trying downloading packages from archive url: https://pub.dartlang.org that is not reachable, temporary solution that I made is write simple server that redirect all request to nexus, override response by replace all https://pub.dartlang.org to nexus urls, is there any better solution to handle nexus proxy ?
Flutter pub_hosted_url mirror sonatype nexus
1k Views Asked by Witkows At
1
There are 1 best solutions below
Related Questions in NEXUS
- Migrating Nexus repository manager
- Choose Hibernate url and nexus snapshot repository dynamically while deploying artifact to Nexus server with Maven build or profiles
- Nexus Remote User Token authorization when deploying
- Change the hibernate property of a database project added as a dependency to a web project
- Nexus Nuget Repository List Version Information
- Corrupt Ivy XML missing dependencies
- Jenkins build parameterized with a choice of versions of a Nexus artifact (all GAVs)
- how to pull all the available snapshots versions from nexus repository to the Jenkins?
- Maven site plugin or one of it's dependencies could not be resolved
- Apache IVY Unable to resolve dependencies for MAVEN Projects
- Nexus and uploading artifacts for .NET Applications
- Is it possible to use CocoaPods through Nexus repository?
- Rebuild all versions of all Maven components from closed sources (without artifact repository)
- How to use special characters in Maven repository URL's password for karaf? (org.ops4j.pax.url.mvn.repositories)
- Building multimodule maven project
Related Questions in FLUTTER-DEPENDENCIES
- How can I update the app icon badge in flutter android 10?
- Method Exception found while using the image picker in flutter
- Working with Imager Picker Dependency in Flutter
- Can anybody tell why am I getting this error in Flutter while trying to implement animation
- How can I fetch the metadata of audio files in flutter?
- Unable to load image from ../url.png file in flutter
- Flutter : How to show Firebase Auth exceptions in the consle?
- How can i store variable or to say list variable in the local storage in flutter?
- How to achieve each screen having Scaffold widget while using BottomNavigation bar?
- flutter packages get ERORR 66 linux : Could not decompress gz stream Connection closed while receiving data, path = ''
- Provider - Selector rebuild when scrolling
- Flutter - Execution failed for task ':app:multiDexListDebug'
- Widget function does not work in Column widget?
- Wrong application icon shown in app Settings info and while installation
- Flutter , camera application running in the background
Related Questions in DART-PUB
- Package import - Target of URI does not exists
- Dart import packages not working
- How to run or deploy an app with a git dependency to a private repo
- dart client side hide/obfuscate code
- How to make pub build show warnings/hints from all packages
- How do I change source directory in Dart/Pub config?
- Pub warnings while trying to run bwu_datagrid 0.0.18 and polymer+angular
- In AngularDart, how should I reference my templates in templateUrl so they work for both Dartium and dart2js?
- DART: Run pub build on library fails with "[65] There are no source directories present"
- Could not find a file named "pubspec.yaml" in
- How to deploy a Dart Polymer app to Javascript using dart2js
- Dart deployment query - how to deploy a dart code on server + configuration management
- Dart pub rename failed
- Getting Started application failed to run
- How to use SASS in Dart editor
Related Questions in DART-PACKAGES
- Create a package in dart
- How to make the country code come inside the form field in flutter using intl_phone_number_input
- Flutter & Dart, pub.dev uploading a package, why license link isn't highlighted?
- Create a custom color constant with BlockPicker and importable for the whole application
- How to include files in dart package
- How to correctly organize multiple examples on a dart package
- How to get the file path to an asset included in a Dart package?
- Flutter Dart Error: Dart_LookupLibrary: library 'package:home_widget/home_widget_callback_dispatcher.dart' not found
- I have an error for import package in flutter
- Get the next target on tutorial_coach_mark
- Any Flutter Package that fetchs GoogleCredential Access Token
- How to Fix: failed to upload the package. flutter
- Intellij Idea is not recognizing the dart project correctly since using melos
- Flutter returns Execution failed for task ':app:transformClassesWithDexBuilderForDebug' as soon as I add packages
- Flutter pub_hosted_url mirror sonatype nexus
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think you can reverse the order, have nexus in front door, and your simple server as middle tier to bridge nexus and pub.dartlang.org