How to include an apache library with my opensource code?

Posted by OscarRyz on Programmers See other posts from Programmers or by OscarRyz
Published on 2011-02-25T16:31:28Z Indexed on 2011/02/26 7:32 UTC
Read the original article Hit count: 364

I have this opensource code with MIT license that uses an Apache 2.0 licensed library.

I want to include this in my project, so it can be built right away.

In the point 4 of that license explains how to redistribute it:

excerpt:

4 . Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:

You must give any other recipients of the Work or Derivative Works a copy of this License; and

You must cause any modified files to carry prominent notices stating that You changed the files; and

You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and

If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.

I'm not creating a derivative work ( I plan to provide it as it is ).

I don't have a NOTICE file, just my my own LICENSE.txt file.

Question: Where should I put something along the lines: "This project uses Xyz library distributed under Apache2.0 ..."? What's recommented?

Should I provide the apache license file too? Or would be enough if I just say "Find the license online here...http://www.apache.org/licenses/LICENSE-2.0.html"

I hope someone who has done this in the past may shed some light on the matter.

© Programmers or respective owner

Related posts about licensing

Related posts about mit-license