forked from spring-attic/eclipse-integration-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
open_source_licenses.txt
1622 lines (1216 loc) · 82.7 KB
/
open_source_licenses.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
open_source_license.txt
Eclipse Integration Commons 3.4.0 GA
=================================================================
GoPivotal makes available all content in this download ("Content").
Unless otherwise indicated below, the Content is provided to you under
the terms and conditions of the Eclipse Public License Version 1.0 ("EPL").
A copy of the EPL is available in the file called license.txt. For
purposes of the EPL, "Program" will mean the Content.
The following copyright statements and licenses apply to various open
source software packages (or portions thereof) that are distributed with
this Content.
=================================================================
TABLE OF CONTENTS
=================================================================
The following is a listing of the open source components detailed in this document.
This list is provided for your convenience; please read further if you wish to review
the copyright notice(s) and the full text of the license associated with each component.
SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES
>>> org.aopalliance-1.0.0
>>> springframework.roo.wrapping.bcpg-jdk15-1.45
>>> springframework.roo.wrapping.bcprov-jdk15_1.45-1.45
SECTION 2: Apache License, V2.0
>>> org.apache.commons.logging-1.1.1
>>> org.springframework.aop-4.0.0.m1
>>> org.springframework.beans-4.0.0.m1
>>> org.springframework.context-4.0.0.m1
>>> org.springframework.context.support-4.0.0.m1
>>> org.springframework.core-4.0.0.m1
>>> org.springframework.data.core-1.6.0
>>> org.springframework.expression-4.0.0.m1
>>> org.springframework.jdbc-4.0.0.m1
>>> org.springframework.jms-4.0.0.m1
>>> org.springframework.orm-4.0.0.m1
>>> org.springframework.oxm-4.0.0.m1
>>> org.springframework.roo.wrapping.json-simple-1.1.0
>>> org.springframework.transaction-4.0.0.m1
>>> org.springframework.uaa.client-1.0.3
>>> org.springframework.web-4.0.0.m1
>>> org.springframework.web.servlet-4.0.0.m1
>>> org.springsource.util.common-2.0.0
SECTION 3: Common Development and Distribution License, V1.0
>>> javax.annotation-1.1.1
SECTION 4: Eclipse Public License, V1.0
>>> com.google.protobuf-2.4.0
>>> edu.emory.mathcs.backport-3.1.0
>>> javax.activation-1.1.0
>>> javax.el-2.2.0
>>> javax.jms-1.1.0
>>> javax.mail-1.4.0
>>> javax.xml.stream-1.0.1
>>> javax.xml.ws-2.1.0
>>> org.apache.commons.codec-1.6.0
>>> org.apache.commons.collections-3.2.0
>>> org.apache.commons.io-2.0.1
>>> org.apache.httpcomponents.httpclient-4.2.5
>>> org.apache.httpcomponents.httpcore-4.2.4
>>> org.codehaus.jackson.core-1.6.0
>>> org.codehaus.jackson.mapper-1.6.0
APPENDIX. Standard License Files
>>> Eclipse Public License, V1.0
>>> Apache License, V2.0
>>> Common Development and Distribution License, V1.0
--------------- SECTION 1: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES ----------
BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES are applicable to the following component(s).
>>> org.aopalliance-1.0.0
The AOP Alliance project is a joint open-source project between several software engineering people who are interested in AOP and Java.
LICENCE: all the source code provided by AOP Alliance is Public Domain.
>>> springframework.roo.wrapping.bcpg-jdk15-1.45
License:
Bouncy Castle Licence http://www.bouncycastle.org/licence.html
Apache Software License, Version 1.1 http://www.apache.org/licenses/LICENSE-1.1
>>> springframework.roo.wrapping.bcprov-jdk15_1.45-1.45
Licenses:
Bouncy Castle Licence http://www.bouncycastle.org/licence.html
ADDITIONAL LICENSE INFORMATION:
> Apache 1.1
Apache Software License, Version 1.1 http://www.apache.org/licenses/LICENSE-1.1
Packages
--------------- SECTION 2: Apache License, V2.0 ----------
Apache License, V2.0 is applicable to the following component(s).
>>> org.apache.commons.logging-1.1.1
NOTICE file corresponding to the section 4d of The Apache License, Version 2.0, in this case for Commons Logging
Commons Logging
Copyright 2001-2007 The Apache Software Foundation
This product includes/uses software(s) developed by 'an unknown organization'
- Unnamed - avalon-framework: avalon-framework: jar: 4.1.3
- Unnamed - log4j:log4j: jar: 1.2.12
- Unnamed - logkit: logkit: jar: 1.0.1
>>> org.springframework.aop-4.0.0.m1
Copyright 2002-2007 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.beans-4.0.0.m1
Copyright 2002-2007 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.context-4.0.0.m1
Copyright 2002-2008 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.context.support-4.0.0.m1
Copyright 2002-2008 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.core-4.0.0.m1
Copyright 2002-2008 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.data.core-1.6.0
Copyright (c) 2011 by the original author(s).
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
>>> org.springframework.expression-4.0.0.m1
Copyright 2002-2009 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.jdbc-4.0.0.m1
Copyright 2002-2009 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.jms-4.0.0.m1
Copyright 2002-2009 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
>>> org.springframework.orm-4.0.0.m1
Copyright 2002-2011 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.oxm-4.0.0.m1
Copyright 2002-2011 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.roo.wrapping.json-simple-1.1.0
License: Apache 2.0
>>> org.springframework.transaction-4.0.0.m1
Copyright 2002-2006 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
>>> org.springframework.uaa.client-1.0.3
Spring User Agent Analysis (UAA) is copyright (C) 2010 SpringSource
Inc. All Rights Reserved.
All parts of UAA except the "server" module are licensed under the
Apache Software License, version 2.0:
http://www.apache.org/licenses/LICENSE-2.0.html.
The "server" module is commercial/proprietary to VMware and all rights
are reserved. The "server" module consists of all files under the
"server" directory and its sub-directories. The "client" module does not require the "server" module and thus the "client" module can be freely redistributed under the aforementioned Apache Software License.
Other software is used by Spring UAA as follows:
* Google Protocol Buffers for Java (http://code.google.com/p/protobuf) is used for encoding and decoding objects into an optimised wire format. This library is licensed under the New BSD License.
* Base64 (http://iharder.net/base64) is used for Base64 encoding and decoding. It has been formally granted to the public domain.
>>> org.springframework.web-4.0.0.m1
Copyright 2002-2011 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springframework.web.servlet-4.0.0.m1
Copyright 2007 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
>>> org.springsource.util.common-2.0.0
Copyright SpringSource Inc 2007,2009.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--------------- SECTION 3: Common Development and Distribution License, V1.0 ----------
Common Development and Distribution License, V1.0 is applicable to the following component(s).
>>> javax.annotation-1.1.1
[PLEASE NOTE: GOPIVOTAL, INC. ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE CDDL 1.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF CDDL 1.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
License: CDDL 1.0
--------------- SECTION 4: Eclipse Public License, V1.0 ----------
Eclipse Public License, V1.0 is applicable to the following component(s).
>>> com.google.protobuf-2.4.0
About
About This Content
January 22, 2009
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
Objenesis 1.0
The plug-in includes Objenesis ("Objenesis") developed by http://objenesis.org/. Therefore:
This product includes software developed by Objenesis (
http://objenesis.org/
).
A subset of the Objenesis binary code is included with no modifications except postprocessing (pack200 conditioning and signing). The corresponding Objenesis source code is located in src.zip.
Objenesis is:
Copyright (c) 2003-2006, Objenesis Team and all contributors.
Your use of the Objenesis code is subject to the terms and conditions of the MIT License. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.opensource.org/licenses/mit-license.php
.
Examples and documentation as well as updated source code for Objenesis is available at
http://objenesis.org/
.
>>> edu.emory.mathcs.backport-3.1.0
About
About This Content
June 8, 2007
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
backport-util-concurrent 3.1.0
The plug-in includes backport-util-concurrent 3.1.0 ("backport-util-concurrent"). Therefore:
The backport-util-concurrent binary code is included with no modifications except postprocessing (pack200 conditioning and signing). The corresponding backport-util-concurrent source code is located in src.zip.
backport-util-concurrent is:
This software is released to the public domain, in the spirit of the original code written by Doug Lea. The code can be used for any purpose, modified, and redistributed without acknowledgment. No warranty is provided, either express or implied.
Your use of the backport-util-concurrent code is subject to the terms and conditions of the license. A copy of the license is contained in the file
license.html
.
Examples and documentation as well as updated source code for backport-util-concurrent is available at
http://backport-jsr166.sourceforge.net/
.
>>> javax.activation-1.1.0
About
About This Content
June, 2008
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.
JavaBeans Activation Framework 1.1
Your use of the Activation Framework code is subject to the terms and conditions of the Apache License Version 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/
.
The source for the javax.activation bundle is available on the Apache Geronimo website at
http://geronimo.apache.org/
.
>>> javax.el-2.2.0
About
About This Content
May 05, 2011
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org
.
Third Party Content
(ADDITIONAL LICENSE INFORMATION)
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
> CDDL 1.0
Javax EL API.
The plug-in includes software developed by Sun as part of the Glassfish project.
Your use of the library code is subject to the terms and conditions of the Common Development and Distribution License("CDDL") license. A copy of the Common Development and Distribution License is contained in the file
LICENSE_CDDL.txt
and is also available at
http://glassfish.java.net/public/CDDL+GPL.html
.
Original binaries and source are available from the
Glassfish website
.
>>> javax.jms-1.1.0
About
About This Content
May 09, 2012
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
JMS API
The plug-in includes software developed as part of Java EE 6 SDK.
Your use of the JMS API code is subject to the terms and conditions of the Common Developmen and Distribution License 1.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.opensource.org/licenses/CDDL-1.0
.
Original binaries are available from the
Oracle website
.
>>> javax.mail-1.4.0
About
About This Content
June 08, 2007
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org.
Third Party Content
(ADDITIONAL LICENSE INFORMATION)
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.
> Apache 2.0
Java Mail 1.4
Your use of the Java Mail code is subject to the terms and conditions of the Apache License Version 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/
.
The source for the javax.mail bundle is available on the Apache Geronimo website at
http://geronimo.apache.org/
.
>>> javax.xml.stream-1.0.1
About
About This Content
March, 2009
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.
StAX 1.0.
Your use of the StAX code is subject to the terms and conditions of the Apache Software License v2.0. A copy of the license is contained in the file
LICENCE.txt
and is also available at
http://www.apache.org/licenses/LICENSE-2.0
.
The source for the bundle is available at the StAX website at
http://stax.codehaus.org/
.
>>> javax.xml.ws-2.1.0
About
About This Content
January 27, 2009
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.
Java API for XML Web Services (JAX-WS API)
Your use of the JAX-WS API code is subject to the terms and conditions of the Apache License Version 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/LICENSE-2.0
The source for the javax.xml.ws bundle is available on the Apache Geronimo website at http://geronimo.apache.org/.
>>> org.apache.commons.codec-1.6.0
About
About This Content
May 30, 2008
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
ADDITIONAL LICENSE INFORMATION:
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
Apache Commons Codec 1.6
This code is licensed under the Apache License v2.0 and can be found at
http://www.apache.org/licenses/LICENSE-2.0.txt
. (
local copy
)
Original binaries and source are available from the
Apache Commons Codec website
.
>>> org.apache.commons.collections-3.2.0
About
About This Content
June 8, 2007
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
Commons Collections 3.2
The plug-in includes Commons Collections 3.2 ("Commons Collections") developed by the Apache Software Foundation as part of the Apache Commons project. Therefore:
This product includes software developed by the Apache Software Foundation (
http://www.apache.org/
).
The Commons Collections binary code is included with no modifications except postprocessing (pack200 conditioning and signing). The corresponding Commons Collections source code is located in src.zip.
Commons Net is:
Copyright (c) 1997-2005 The Apache Software Foundation. All rights reserved.
Your use of the Commons Collections code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/LICENSE-2.0.html
.
The Apache attribution
NOTICE.txt
file is included with the Content in accordance with 4d of the Apache License, Version 2.0.
Examples and documentation as well as updated source code for Commons Collections is available at
http://commons.apache.org/collections/
.
>>> org.apache.commons.io-2.0.1
About
About This Content
June 8, 2007
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
Third Party Content
ADDITIONAL LICENSE INFORMATION:
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
> Apache 2.0
Apache Commons IO 2.0.1
The plug-in includes Commons IO 2.0.1 ("Commons IO") developed by the Apache Software Foundation. Therefore:
This product includes software developed by the Apache Software Foundation (
http://www.apache.org/
).
The Commons IO binary code is included with no modifications except postprocessing (pack200 conditioning and signing). The corresponding Commons IO source code is located in src.zip.
Commons IO is:
Copyright (c) 1997-2005 The Apache Software Foundation. All rights reserved.
Your use of the Commons IO code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/LICENSE-2.0.html
.
The Apache attribution
NOTICE.txt
file is included with the Content in accordance with 4d of the Apache License, Version 2.0.
Examples and documentation as well as updated source code for Commons IO is available at
http://commons.apache.org/io/
.
>>> org.apache.httpcomponents.httpclient-4.2.5
About
About This Content
May 30, 2008
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
ADDITIONAL LICENSE INFORMATION:
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
HttpClient 4.1
The plug-in includes software developed by The Apache Software Foundation as part of the HttpComponents project.
Your use of the HttpClient code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/LICENSE-2.0.html
.
The names "HttpClient" and "Apache Software Foundation" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact
.
Original binaries and source are available from the
Apache HttpClient website
.
>>> org.apache.httpcomponents.httpcore-4.2.4
About
About This Content
May 30, 2008
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
ADDITIONAL LICENSE INFORMATION:
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributors license for terms and conditions of use.
HttpCore 4.2
The plug-in includes software developed by The Apache Software Foundation as part of the HttpComponents project.
This project contains annotations derived from JCIP-ANNOTATIONS Copyright (c) 2005 Brian Goetz and Tim Peierls. See http://www.jcip.net.
Your use of the HttpCore code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the file
LICENSE.txt
and is also available at
http://www.apache.org/licenses/LICENSE-2.0.html
.
The names "HttpCore" and "Apache Software Foundation" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact
.
Original binaries and source are available from the
Apache HttpComponents website
.
>>> org.codehaus.jackson.core-1.6.0
About
About This Content
March 12, 2009
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
ADDITIONAL LICENSE INFORMATION:
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.
Jackson JSON processor (Jackson)
Your use of Jackson is subject to the terms and conditions of the Apache License, Version 2.0 ("Apache License"). A copy of the Apache License can be found in
ASL2.0
and is also available at
http://www.apache.org/licenses/LICENSE-2.0.html
.
The Apache attribution
NOTICE
file is included with the Content in accordance with 4d of the Apache License, Version 2.0.
Jackson including its source is available from
http://jackson.codehaus.org/
.
>>> org.codehaus.jackson.mapper-1.6.0
About
About This Content
March 12, 2009
License
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at
http://www.eclipse.org/legal/epl-v10.html
. For purposes of the EPL, "Program" will mean the Content.
If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at
http://www.eclipse.org
.
ADDITIONAL LICENSE INFORMATION:
Third Party Content
The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.
Jackson JSON processor (Jackson)
Your use of Jackson is subject to the terms and conditions of the Apache License, Version 2.0 ("Apache License"). A copy of the Apache License can be found in
ASL2.0
and is also available at
http://www.apache.org/licenses/LICENSE-2.0.html
.
The Apache attribution
NOTICE
file is included with the Content in accordance with 4d of the Apache License, Version 2.0.
Jackson including its source is available from
http://jackson.codehaus.org/
.
=============== APPENDIX. Standard License Files ==============
--------------- SECTION 1: Eclipse Public License, V1.0 -----------
Eclipse Public License - v 1.0
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION
OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
1. DEFINITIONS
"Contribution" means:
a) in the case of the initial Contributor, the initial code and
documentation distributed under this Agreement, and
b) in the case of each subsequent Contributor:
i) changes to the Program, and
ii) additions to the Program; where such changes and/or
additions to the Program originate from and are distributed
by that particular Contributor. A Contribution 'originates'
from a Contributor if it was added to the Program by such
Contributor itself or anyone acting on such Contributor's
behalf. Contributions do not include additions to the Program
which: (i) are separate modules of software distributed in
conjunction with the Program under their own license agreement,
and (ii) are not derivative works of the Program.
"Contributor" means any person or entity that distributes the Program.
"Licensed Patents" mean patent claims licensable by a Contributor which
are necessarily infringed by the use or sale of its Contribution alone
or when combined with the Program.
"Program" means the Contributions distributed in accordance with this
Agreement.
"Recipient" means anyone who receives the Program under this Agreement,
including all Contributors.
2. GRANT OF RIGHTS
a) Subject to the terms of this Agreement, each Contributor hereby
grants Recipient a non-exclusive, worldwide, royalty-free copyright
license to reproduce, prepare derivative works of, publicly display,
publicly perform, distribute and sublicense the Contribution of such
Contributor, if any, and such derivative works, in source code and
object code form.
b) Subject to the terms of this Agreement, each Contributor hereby
grants Recipient a non-exclusive, worldwide, royalty-free patent
license under Licensed Patents to make, use, sell, offer to sell,
import and otherwise transfer the Contribution of such Contributor,
if any, in source code and object code form. This patent license
shall apply to the combination of the Contribution and the Program
if, at the time the Contribution is added by the Contributor, such
addition of the Contribution causes such combination to be covered
by the Licensed Patents. The patent license shall not apply to any
other combinations which include the Contribution. No hardware per
se is licensed hereunder.
c) Recipient understands that although each Contributor grants the
licenses to its Contributions set forth herein, no assurances are
provided by any Contributor that the Program does not infringe the
patent or other intellectual property rights of any other entity. Each
Contributor disclaims any liability to Recipient for claims brought by
any other entity based on infringement of intellectual property rights
or otherwise. As a condition to exercising the rights and licenses
granted hereunder, each Recipient hereby assumes sole responsibility
to secure any other intellectual property rights needed, if any. For
example, if a third party patent license is required to allow
Recipient to distribute the Program, it is Recipient's responsibility
to acquire that license before distributing the Program.
d) Each Contributor represents that to its knowledge it has sufficient
copyright rights in its Contribution, if any, to grant the copyright
license set forth in this Agreement.
3. REQUIREMENTS
A Contributor may choose to distribute the Program in object code form
under its own license agreement, provided that:
a) it complies with the terms and conditions of this Agreement; and
b) its license agreement:
i) effectively disclaims on behalf of all Contributors all
warranties and conditions, express and implied, including
warranties or conditions of title and non-infringement, and
implied warranties or conditions of merchantability and fitness
for a particular purpose;
ii) effectively excludes on behalf of all Contributors all
liability for damages, including direct, indirect, special,
incidental and consequential damages, such as lost profits;
iii) states that any provisions which differ from this Agreement
are offered by that Contributor alone and not by any other
party; and
iv) states that source code for the Program is available from
such Contributor, and informs licensees how to obtain it in a
reasonable manner on or through a medium customarily used for
software exchange.
When the Program is made available in source code form:
a) it must be made available under this Agreement; and
b) a copy of this Agreement must be included with each copy of
the Program. Contributors may not remove or alter any copyright
notices contained within the Program.
Each Contributor must identify itself as the originator of its
Contribution, if any, in a manner that reasonably allows subsequent
Recipients to identify the originator of the Contribution.
4. COMMERCIAL DISTRIBUTION
Commercial distributors of software may accept certain responsibilities
with respect to end users, business partners and the like. While this
license is intended to facilitate the commercial use of the Program, the
Contributor who includes the Program in a commercial product offering
should do so in a manner which does not create potential liability for
other Contributors. Therefore, if a Contributor includes the Program in a
commercial product offering, such Contributor ("Commercial Contributor")
hereby agrees to defend and indemnify every other Contributor
("Indemnified Contributor") against any losses, damages and costs
(collectively "Losses") arising from claims, lawsuits and other legal
actions brought by a third party against the Indemnified Contributor to
the extent caused by the acts or omissions of such Commercial Contributor
in connection with its distribution of the Program in a commercial
product offering. The obligations in this section do not apply to any
claims or Losses relating to any actual or alleged intellectual property
infringement. In order to qualify, an Indemnified Contributor must: a)
promptly notify the Commercial Contributor in writing of such claim,