• My software uses a client lib.
  • I only need the GPL software as a server for integration testing.
  • There is no need for the GPL software for testing.

What are the implications of using the GPL server...does it infect the rest of the system?

link|improve this question

44% accept rate
feedback

1 Answer

up vote 5 down vote accepted

IANAL, TINLA, talk to your company lawyer.

My opinion: No, it does not, as long as the code that you distribute does not in any way reference the API of the testing library. For example, if you have:

  • Main assembly A, distributed to customers.
  • GPL'd assembly B, not distributed to customers.
  • Test assembly C, references A and B, not distributed to customers.

The test assembly is "contaminated" by the GPL since it uses its API. Assembly A does not reference assembly B and therefore is not affected by its license in any way.

Note that you are not required to license assembly C under the GPL if you do not distribute the code to anyone outside of the company -- the GPL only comes into play if you distribute binaries to some entity who does not already own the rights to the code.

link|improve this answer
I object to your use of "contaminated" – bguiz Nov 30 '10 at 2:22
@bguiz: I mean no offense towards the GPL or its goals. I have distributed quite a bit of my own code under the GPL. If there is a verb you would suggest I use instead, I might amend my answer. – cdhowie Nov 30 '10 at 2:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.