License Question - Dual License #11452
-
When I review your marketing materials, your website states that the tool is a ‘dual-license’ Apache 2.0 and MPL 2.0, suggesting to me that I can select either Apache or MPL well using the tool within my product. However, the attached license file suggests that the license is a mix of MPL, BSD and MIT. I’m not sure if we’re looking in the right spots so if you could please provide us with clarity, it would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello - If you search the RabbitMQ source code, you can see where that license file comes from:
OK, so the file is called
That's interesting, what is in the https://github.com/rabbitmq/rabbitmq-server/blob/main/Makefile#L260-L263 It looks like https://github.com/rabbitmq/rabbitmq-server/blob/main/LICENSE |
Beta Was this translation helpful? Give feedback.
Hello -
If you search the RabbitMQ source code, you can see where that license file comes from:
OK, so the file is called
LICENSE.tail
. Here is how it is used:That's interesting, what is in the
Makefile
on line 260:https://github.com/rabbitmq/rabbitmq-server/blob/main/Makefile#L260-L263
It looks like
LICENSE.tail
is appended to the overall LICENSE file. Most likely, this is due to a dependency of RabbitMQ tha…