I’m releasing an application I wrote as an open-source project by creating a public source-code repository. I use a third-party library which is also open-source and freely redistributable. I’m not versioning the third-party library, but should I include it in my repository for the convenience of those cloning the repository or should I expect them to download the third-party library on their own? To be clear, I’m not asking if I should version the third-party code or if I can redistribute it, but whether it is standard practice to include third-party source code as a convenience.
I’m releasing an application I wrote as an open-source project by creating a public
Share
You have to read the license for the code in question. If it’s GPL, you have to make it available, but you don’t have put it into the repository. If it’s BSD, you just have to give credit in your released code. In any case, including it in a repository separate from your project is a nice thing to do, simply for the sake of furthering the goal of open source, although that’s far from standard practice.