We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It takes more than 15 mins and download 432MB of dependencies when we build a VSCode project with a connector. ex: CSV module
I manage to reduce the build time to 2.38 mins and download size to 46.7 MB by skipping transitive dependencies of the connector as below.
<dependency> <groupId>org.wso2.integration.module</groupId> <artifactId>mi-module-csv</artifactId> <version>1.0.6</version> <type>zip</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency>
Build a project in a clean repo.
latest
No response
The text was updated successfully, but these errors were encountered:
arunans23
ChinthakaJ98
No branches or pull requests
Description
It takes more than 15 mins and download 432MB of dependencies when we build a VSCode project with a connector. ex: CSV module
I manage to reduce the build time to 2.38 mins and download size to 46.7 MB by skipping transitive dependencies of the connector as below.
Steps to Reproduce
Build a project in a clean repo.
Version
latest
Environment Details (with versions)
No response
The text was updated successfully, but these errors were encountered: