forked from opencast/opencast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NOTICES
2286 lines (1809 loc) · 152 KB
/
NOTICES
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
Copyright <2015>, The Apereo Foundation
This project includes software developed by The Apereo Foundation.
http://www.apereo.org/
Licensed under the Educational Community License, Version 2.0
(the "License"); you may not use this software except in compliance
with the License. You may obtain a copy of the License at:
http://opensource.org/licenses/ecl2.txt
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.
Additional third-party dependencies defined in Maven pom.xml files are pulled
from remote repositories at build-time and then deployed within the Opencast
bundle. All third party libraries and tools included in the source code are
distributed under licenses that are compatible with ECL 2.0.
List of Included Third-Party Dependencies
-----------------------------------------
modules/admin-ui/bower_components/angular/.*
angular 1.7.8 (https://github.com/angular/angular.js)
Copyright (c) 2010-2019 Google, Inc. http://angularjs.org
Licensed under MIT
modules/admin-ui/bower_components/angular-animate/.*
angular-animate 1.7.8 (https://github.com/angular/angular.js)
Copyright (c) 2010-2019 Google, Inc. http://angularjs.org
Licensed under MIT
modules/admin-ui/bower_components/angular-chart-js/.*
angular-chart-js 1.1.1 (https://github.com/jtblin/angular-chart.js)
Copyright (c) Jerome Touffe-Blin ("Author")
Licensed under BSD
modules/admin-ui/bower_components/angular-hotkeys/.*
angular-hotkeys 1.7.0 (https://github.com/chieffancypants/angular-hotkeys)
Copyright (c) 2014 Wes Cruver
Licensed under MIT
modules/admin-ui/bower_components/angular-local-storage/.*
angular-local-storage 0.7.1 (https://github.com/grevory/angular-local-storage.git)
Copyright (c) 2016 Gregory Pike
Licensed under MIT
modules/admin-ui/bower_components/angular-messages/.*
angular-messages 1.7.8 (https://github.com/angular/angular.js)
Copyright (c) 2010-2019 Google, Inc. http://angularjs.org
Licensed under MIT
modules/admin-ui/bower_components/angular-mocks/.*
angular-mocks 1.7.8 (https://github.com/angular/angular.js)
Copyright (c) 2010-2019 Google, Inc. http://angularjs.org
Licensed under MIT
modules/admin-ui/bower_components/angular-resource/.*
angular-resource 1.7.8 (https://github.com/angular/angular.js)
Copyright (c) 2010-2019 Google, Inc. http://angularjs.org
Licensed under MIT
modules/admin-ui/bower_components/angular-route/.*
angular-route 1.7.8 (https://github.com/angular/angular.js)
Copyright (c) 2010-2019 Google, Inc. http://angularjs.org
Licensed under MIT
modules/admin-ui/bower_components/angular-translate/.*
angular-translate 2.18.1 (https://github.com/angular-translate/angular-translate)
Copyright (c) 2013-2017 The angular-translate team and Pascal Precht
Licensed under MIT
modules/admin-ui/bower_components/angular-translate-loader-static-files/.*
angular-translate-loader-static-files 2.18.1 (https://github.com/angular-translate/bower-angular-translate-loader-static-files.git)
Copyright (c) 2013-2017 The angular-translate team and Pascal Precht
Licensed under MIT
modules/admin-ui/bower_components/angular-ui-sortable/.*
angular-ui-sortable - This directive allows you to jQueryUI Sortable.
@version v0.19.0 - 2018-01-14
@link http://angular-ui.github.com
@license MIT
modules/admin-ui/bower_components/angular-wizard/.*
angular-wizard 1.1.1 (git://github.com/mgonto/angular-wizard.git)
Copyright (c) 2013-2014 Martin Gontovnikas http://www.gon.to/
Licensed under MIT
modules/admin-ui/bower_components/chart.js/.*
chart.js 2.8.0 (https://github.com/chartjs/Chart.js)
Copyright (c) 2018 Chart.js Contributors
Licensed under MIT
modules/admin-ui/bower_components/ng-file-upload/.*
angular-file-upload 2.2.2 (https://github.com/danialfarid/angular-file-upload)
Copyright (c) 2013 danialfarid
Licensed under MIT
modules/admin-ui/bower_components/jquery/*
jQuery JavaScript Library v3.4.1
http://jquery.com/
Copyright JS Foundation and other contributors
Released under the MIT license
http://jquery.org/license
modules/admin-ui/bower_components/jquery-ui/*
jQuery UI - v1.12.1 - 2016-09-14
http://jqueryui.com
Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
modules/admin-ui/bower_components/jqueryui-timepicker-addon/*
jQuery Timepicker Addon - v1.6.3 - 2016-04-20
http://trentrichardson.com/examples/timepicker
Copyright (c) 2016 Trent Richardson; Licensed MIT
modules/admin-ui/src/main/webapp/css/vendor/chosen.less
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com
Copyright (c) 2011 - 2016 Harvest http://getharvest.com
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
modules/admin-ui/src/main/webapp/lib/chosen.js
modules/admin-ui/src/main/webapp/lib/chosen.jquery.*
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com
Version 1.6.2
Copyright (c) 2011 - 2016 Harvest http://getharvest.com
MIT License
modules/admin-ui/src/main/webapp/lib/angular-chosen.js
modules/admin-ui/src/main/webapp/lib/angular-chosen.min.js
Angular Binding for Harvest Chosen
Version 1.8.0, 1.8.2
Copyright (c) 2013 Localytics http://www.localytics.com
MIT License
modules/admin-ui/src/main/webapp/lib/datepicker/*
jQuery UI - v1.10.3 - 2013-12-13
http://jqueryui.com
Copyright 2013 jQuery Foundation and other contributors; Licensed MIT
modules/admin-ui/src/main/webapp/lib/font-awesome/*
Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
modules/admin-ui/src/main/webapp/lib/google-fonts/*
Open Sans
Steve Matteson
https://www.google.com/fonts/specimen/Open+Sans
Apache License, version 2.0
modules/admin-ui/src/main/webapp/lib/moment.min.js
version : 2.9.0
authors : Tim Wood, Iskren Chernev, Moment.js contributors
license : MIT
momentjs.com
modules/admin-ui/src/main/webapp/lib/underscore-1.5.2.js
Underscore.js 1.5.2
http://underscorejs.org
(c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
Underscore may be freely distributed under the MIT license.
modules/admin-ui/src/main/webapp/lib/video-js/*
Video.js v4.11.2
Copyright 2014 Brightcove, Inc.
Licensed under the Apache License, Version 2.0
modules/admin-ui/src/main/webapp/scripts/shared/directives/opencastScrollGlue.js
Adapted from AngularJS Scroll Glue v2.0.6
https://github.com/Luegg/angularjs-scroll-glue
(c) 2013 Lukas Wegmann
Licensed under the MIT license
modules/admin-ui/src/test/resources/test/lib/angular/angular-scenario.js
Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
Released under the MIT license
http://jquery.org/license
modules/admin-ui/src/test/resources/test/lib/jasmine-jquery.js
Jasmine-jQuery: a set of jQuery helpers for Jasmine tests.
Version 2.0.5
https://github.com/velesin/jasmine-jquery
Copyright (c) 2010-2014 Wojciech Zawistowski, Travis Jeffery
MIT License
modules/admin-ui/src/test/resources/test/lib/jquery-deparam.js
Deparam is the inverse of jquery's $.param method
Extracted $.deparam from Ben Alman's jquery-bbq with license info included
https://github.com/AceMetrix/jquery-deparam
MIT License
modules/common/src/test/resources/InfusionAll.js
jQuery JavaScript Library v1.3.2
http://jquery.com/
Copyright (c) 2009 John Resig
Dual licensed under the MIT and GPL licenses.
modules/distribution-service-aws-s3
Amazon AWS SDK for Java
Version 1.11.49_1
https://github.com/aws/aws-sdk-java
Licensed under Apache 2 (https://github.com/aws/aws-sdk-java/blob/master/LICENSE.txt)
modules/engage-theodul-core/src/main/resources/ui/js/lib/backbone.js
Backbone v1.2.3 (http://backbonejs.org)
Copyright 2010-2016 Jeremy Ashkenas, DocumentCloud
Licensed under MIT (https://github.com/jashkenas/backbone/blob/master/LICENSE)
modules/engage-theodul-core/src/main/resources/ui/js/lib/basil.js
Basil v0.4.0 (http://wisembly.github.io/basil.js)
Copyright 2014-2015 Wisembly and contributors
Licensed under MIT (https://github.com/Wisembly/basil.js/blob/master/LICENCE.md)
modules/engage-theodul-core/src/main/resources/ui/js/lib/bootbox.js
Bootbox 4.4.0 (https://github.com/makeusabrew/bootbox)
Copyright 2011-2015 by Nick Payne
Licensed under MIT (http://bootboxjs.com/license.txt)
modules/engage-theodul-core/src/main/resources/ui/css/bootstrap/*
modules/engage-theodul-core/src/main/resources/ui/js/lib/bootstrap.js
Bootstrap v3.3.6 (http://getbootstrap.com)
Copyright 2011-2015 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-core/src/main/resources/ui/js/lib/bower.js
Bower 1.0.0 (https://github.com/ded/bowser)
Copyright 2015 Dustin Diaz
Licensed under MIT (https://github.com/ded/bowser/blob/master/LICENSE)
modules/engage-theodul-core/src/main/resources/ui/js/lib/jquery.js
jQuery v2.2.0 (http://jquery.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery/blob/master/LICENSE.txt)
modules/engage-theodul-core/src/main/resources/ui/js/lib/jquery-ui.js
jQuery UI v1.11.4 (http://jqueryui.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery-ui/blob/master/LICENSE.txt)
modules/engage-theodul-core/src/main/resources/ui/js/lib/moment.js
Moment v2.11.1 (momentjs.com)
Copyright 2011-2016 Tim Wood, Iskren Chernev, Moment.js contributors
Licensed under MIT (https://github.com/jquery/jquery/blob/master/LICENSE.txt)
modules/engage-theodul-core/src/main/resources/ui/js/lib/mousetrap.js
Mousetrap v1.5.3 (http://craig.is/killing/mice)
Copyright 2015 Craig Campbell
Licensed under MIT
modules/engage-theodul-core/src/main/resources/ui/js/lib/require.js
RequireJS v2.1.22 (http://requirejs.org)
Copyright 2010-2015, The Dojo Foundation
Licensed under the "New" BSD License (https://github.com/jrburke/requirejs/blob/master/LICENSE)
modules/engage-theodul-core/src/main/resources/ui/js/lib/require.js
RequireJS v1.8.3 (http://underscorejs.org)
Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
Licensed under MIT (https://github.com/jashkenas/underscore/blob/master/LICENSE)
modules/engage-theodul-core/src/main/resources/ui/js/lib/mousewheel.js
Requires: jQuery 1.2.2+
Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh)
Licensed under the MIT License
modules/engage-theodul-plugin-archetype/src/main/resources/archetype-resources/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-controls/src/main/resources/static/lib/jqueryui/*
jQuery UI v1.11.4 (http://jqueryui.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery-ui/blob/master/LICENSE.txt)
modules/engage-theodul-plugin-controls/src/main/resources/static/lib/jquery.ui.touch-punch.min.js
jQuery UI Touch Punch 0.2.3
http://touchpunch.furf.com/
Copyright 2011–2014, Dave Furfero
Dual licensed under the MIT or GPL Version 2 licenses.
modules/engage-theodul-plugin-controls/src/main/resources/static/lib/hammer.min.js
Hammer.JS - v2.0.6 - 2016-01-06
http://hammerjs.github.io/
Copyright (c) 2016 Jorik Tangelder
Licensed under MIT (https://github.com/hammerjs/hammer.js/blob/master/LICENSE.md)
modules/engage-theodul-plugin-controls/src/main/resources/static/lib/jquery.hammer.js
jquery.hammer.js - v2.0.0
https://github.com/hammerjs/jquery.hammer.js
Copyright (c) 2014 Hammer.js
Licensed under MIT (https://github.com/hammerjs/jquery.hammer.js/blob/master/LICENSE)
modules/engage-theodul-plugin-controls/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-controls/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-controls/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-custom-mhConnection/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-custom-mhConnection/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-custom-mhConnection/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-custom-notifications/src/main/resources/static/lib/alertify/alertify.js
AlertifyJS v0.13.12 (https://alertifyjs.org)
Copyright 2009-2014 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso
Licensed under MIT license (https://github.com/alertifyjs/alertify.js/blob/master/LICENSE.md)
modules/engage-theodul-plugin-custom-notifications/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-custom-notifications/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-custom-notifications/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-custom-usertracking/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-custom-usertracking/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-custom-usertracking/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-description/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-description/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-description/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-tab-description/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-tab-description/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-tab-description/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-tab-shortcuts/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-tab-shortcuts/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-tab-shortcuts/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-tab-slidetext/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-tab-slidetext/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-tab-slidetext/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-timeline-statistics/src/main/resources/static/lib/Chart.js
Chart.js
http://chartjs.org/
Version: 1.0.1-beta.4
Copyright 2014 Nick Downie
Released under the MIT license
modules/engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/Chart.min.js
Chart.js
http://chartjs.org/
Copyright 2013 Nick Downie
Released under the MIT license
https://github.com/nnnick/Chart.js
modules/engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-theodul-plugin-video-videojs/src/main/resources/static/lib/synchronize.js
Synchronize.js v1.2.5 (https://github.com/CallToPower/Synchronize.js)
Copyright (c) 2013-2016, Denis Meyer
Licensed under 3-clause BSD License (https://github.com/CallToPower/Synchronize.js/blob/master/LICENSE.txt)
modules/engage-theodul-plugin-video-videojs/src/main/resources/static/lib/videojs/video.js
Video.js v5.6.0 (http://videojs.com)
Copyright Brightcove, Inc.
Licensed under the Apache License, Version 2.0 (https://github.com/videojs/video.js/blob/master/LICENSE)
modules/engage-theodul-plugin-video-videojs/src/main/resources/static/lib/videojs/videojs.hls.min.js
videojs-contrib-hls v1.3.7 (http://videojs.github.io/videojs-contrib-hls)
Copyright 2016 Brightcove
Licensed under the Apache License, Version 2.0 (https://github.com/videojs/videojs-contrib-hls/blob/master/LICENSE)
modules/engage-theodul-plugin-video-videojs/src/main/resources/static/lib/videojs/videojs-media-sources.min.js
videojs-media-sources v2.4.5 (https://github.com/videojs/videojs-contrib-media-sources)
Copyright 2016 Brightcove
Licensed under the Apache License, Version 2.0 (https://github.com/videojs/videojs-contrib-media-sources)
modules/engage-theodul-plugin-video-videojs/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/engage-theodul-plugin-video-videojs/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/engage-theodul-plugin-video-videojs/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/engage-ui/src/main/resources/ui/css/bootstrap.*
Bootstrap v3.3.2 (http://getbootstrap.com)
Copyright 2011-2015 Twitter, Inc.
Licensed under MIT
modules/engage-ui/src/main/resources/ui/js/alertify/alertify.js
AlertifyJS - v0.13.12
Copyright Fabien Doiron <[email protected]>
MIT license
modules/engage-ui/src/main/resources/ui/js/jquery-localize.min.js
jquery.localize.js
Copyright (c) Jim Garvin (http://github.com/coderifous), 2008.
Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt)
and MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses.
modules/engage-ui/src/main/resources/ui/js/lib/js-yaml.min.js
js-yaml 3.13.1
https://github.com/nodeca/js-yaml
MIT License
modules/engage-ui/src/main/resources/ui/js/bootstrap-accessibility.min.js
bootstrap-accessibility-plugin - v1.0.4 - 2014-11-03
https://github.com/paypal/bootstrap-accessibility-plugin
Copyright (c) 2014 PayPal Accessibility Team
Licensed BSD
modules/engage-ui/src/main/resources/ui/js/bootstrap.min.js
Bootstrap v3.3.2 (http://getbootstrap.com)
Copyright 2011-2015 Twitter, Inc.
Licensed under MIT
modules/engage-ui/src/main/resources/ui/js/jquery.liveSearch.js
Live Search 2.0
http://andreaslagerkvist.com/jquery/live-search/
2008 Andreas Lagerkvist (andreaslagerkvist.com)
http://creativecommons.org/licenses/by/3.0/
modules/engage-ui/src/main/resources/ui/js/seedrandom.js
seedrandom.js version 2.3.4
Author: David Bau
Copyright (c)2014 David Bau.
MIT License
modules/ingest-service-impl/src/test/qunit/qunit/qunit.js
QUnit - A JavaScript Unit Testing Framework
http://docs.jquery.com/QUnit
Copyright (c) 2009 John Resig, Jörn Zaefferer
Dual licensed under the MIT and GPL licenses
modules/kernel/src/test/resources/InfusionAll.js
jQuery JavaScript Library v1.3.2
http://jquery.com/
Copyright (c) 2009 John Resig
Dual licensed under the MIT and GPL licenses.
/modules/runtime-info-ui-ng/src/main/resources/ui/js/jquery/jquery.js
jQuery v3.3.1 (http://jquery.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery/blob/master/LICENSE.txt)
modules/videoeditor-workflowoperation/src/main/resources/ui/operation/editor/js/ObjTree.js
XML.ObjTree -- XML source code from/to JavaScript object like E4X
Author: Yusuke Kawasaki http://www.kawa.net/
Copyright (c) 2005-2006 Yusuke Kawasaki. All rights reserved.
Artistic license.
modules/videoeditor-workflowoperation/src/main/resources/ui/operation/editor/js/synchronize-min.js
Synchronize.js
Copyright (c) 2013-2015, Denis Meyer, [email protected]
3-clause BSD License
shared-resources/css/jquery-ui/*
jQuery UI CSS Framework
Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license
shared-resources/css/player-multi-hybrid/opencast-reset.css
YUI fonts, reset and base
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
shared-resources/js/bridge/lib/FABridge.js
Copyright 2006 Adobe Systems Incorporated
MIT License
shared-resources/js/ext/trimpath.js
TrimPath Template. Release 1.0.38.
Copyright (C) 2004, 2005 Metaha.
TrimPath Template is licensed under the GNU General Public License
and the Apache License, Version 2.0
shared-resources/js/jquery/jquery-ui.js
jQuery UI 1.8.18
Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://docs.jquery.com/UI
shared-resources/js/jquery/plugins/jARIA.js
Copyright 2007 Chris Hoffman
This software is dual licensed under the MIT (MIT-LICENSE.txt)
and GPL (GPL-LICENSE.txt) licenses.
shared-resources/js/jquery/plugins/jquery.cookie.js
jQuery Cookie plugin
Copyright (c) 2010 Klaus Hartl (stilbuero.de)
Dual licensed under the MIT and GPL licenses:
shared-resources/js/jquery/plugins/jquery.crypt.js
jQuery Cryptography Plug-in
version: 1.0.0 (24 Sep 2008)
copyright 2008 Scott Thompson http://www.itsyndicate.ca - [email protected]
http://www.opensource.org/licenses/mit-license.php
shared-resources/js/jquery/plugins/jquery-ui-timepicker-addon.js
jQuery timepicker addon
Version 1.0.2
Copyright 2012 Trent Richardson
You may use this project under MIT or GPL licenses.
shared-resources/js/jquery/plugins/jquery.wysiwyg.js
WYSIWYG - jQuery plugin 0.6
Copyright (c) 2008-2009 Juan M Martinez
http://plugins.jquery.com/project/jWYSIWYG
Dual licensed under the MIT and GPL licenses:
shared-resources/js/jquery/plugins/jquery.xslt.js
jquery.xslt.js
Copyright (c) 2005-2008 Johann Burkard (<mailto:[email protected]>)
<http://eaio.com>
MIT License
shared-resources/js/jquery/plugins/jquery.xslt.new.js
XSLT jQuery Plugin - Copyright (C) 2007, Jorrit Jongma (Chainfire)
Version: 0.70
@update 7.2.2013 by Martin Abel ([email protected]): Change callback function order
Homepage: http://www.jongma.org/webtools/jquery/
License: MIT / Public Domain
List of Third-Party Dependencies Included with Maven
----------------------------------------------------
assemblies
GroupId ArtifactId License
org.apache.karaf.features framework Apache License, Version 2.0
org.apache.karaf.features standard Apache License, Version 2.0
org.apache.karaf.tooling karaf-maven-plugin Apache License, Version 2.0
org.apache.maven.plugins maven-resources-plugin Apache License, Version 2.0
org.codehaus.mojo build-helper-maven-plugin MIT License
admin-ui
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
com.google.code.gson gson Apache 2.0
com.googlecode.json-simple json-simple The Apache Software License, Version 2.0
commons-io commons-io Apache License, Version 2.0
commons-fileupload commons-fileupload Apache License, Version 2.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
joda-time joda-time Apache 2
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
org.codehaus.jettison jettison Apache License, Version 2.0
org.mnode.ical4j ical4j BSD 3-Clause
org.apache.servicemix.bundles org.apache.servicemix.bundles.commons-httpclient The Apache Software License, Version 2.0
animate-impl
GroupId ArtifactId Licenses
com.google.code.gson gson Apache 2.0
commons-io commons-io Apache License, Version 2.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.commons commons-text Apache License, Version 2.0
org.slf4j slf4j-api MIT License
animate-remote
GroupId ArtifactId Licenses
com.google.code.gson gson Apache 2.0
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.slf4j slf4j-api MIT License
animate-workflowoperation
GroupId ArtifactId Licenses
commons-io commons-io Apache License, Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
annotation-impl
GroupId ArtifactId Licenses
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
org.apache.commons commons-lang3 Apache License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.core Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
asset-manager-api
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
com.google.code.findbugs jsr305 The Apache Software License, Version 2.0
asset-manager-impl
GroupId ArtifactId Licenses
com.google.code.gson gson Apache 2.0
com.mysema.querydsl querydsl-jpa Apache License, Version 2.0
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
org.apache.commons commons-lang3 Apache License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.antlr Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.asm Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.core Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.jpa Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
asset-manager-storage-aws
GroupId ArtifactId Licenses
com.fasterxml.jackson.core jackson-annotations The Apache Software License, Version 2.0
com.fasterxml.jackson.core jackson-core The Apache Software License, Version 2.0
com.fasterxml.jackson.core jackson-databind The Apache Software License, Version 2.0
com.fasterxml.jackson.dataformat jackson-dataformat-cbor The Apache Software License, Version 2.0
org.apache.servicemix.bundles org.apache.servicemix.bundles.aws-java-sdk The Apache Software License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
asset-manager-storage-fs
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
commons-io commons-io Apache License, Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
asset-manager-util
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
commons-io commons-io Apache License, Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
asset-manager-workflowoperation
GroupId ArtifactId Licenses
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
authorization-manager
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
com.googlecode.json-simple json-simple The Apache Software License, Version 2.0
commons-io commons-io Apache License, Version 2.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.felix org.apache.felix.fileinstall Apache License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
authorization-xacml
GroupId ArtifactId Licenses
commons-io commons-io Apache License, Version 2.0
net.sf.saxon Saxon-HE Mozilla Public License Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.jboss.security jboss-xacml lgpl
org.osgi org.osgi.compendium Apache License, Version 2.0
caption-impl
GroupId ArtifactId Licenses
com.googlecode.json-simple json-simple The Apache Software License, Version 2.0
commons-io commons-io Apache License, Version 2.0
jakarta.activation jakarta.activation-api EDL 1.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
caption-remote
GroupId ArtifactId Licenses
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.slf4j slf4j-api MIT License
capture-admin-service-api
GroupId ArtifactId Licenses
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
capture-admin-service-impl
GroupId ArtifactId Licenses
com.google.code.gson gson Apache 2.0
com.google.guava guava The Apache Software License, Version 2.0
commons-io commons-io Apache License, Version 2.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.servicemix.bundles org.apache.servicemix.bundles.xerces The Apache Software License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
comments-workflowoperation
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
common-jpa-impl
GroupId ArtifactId Licenses
org.slf4j slf4j-api MIT License
common
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
com.google.guava guava The Apache Software License, Version 2.0
com.googlecode.json-simple json-simple The Apache Software License, Version 2.0
com.mchange c3p0 GNU Lesser General Public License, Version 2.1-Eclipse Public License, Version 1.0
com.sun.xml.bind jaxb-core CDDL+GPL License
com.sun.xml.bind jaxb-impl Eclipse Distribution License - v 1.0
commons-fileupload commons-fileupload Apache License, Version 2.0
commons-io commons-io Apache License, Version 2.0
de.schlichtherle truezip Apache License, Version 2.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
joda-time joda-time Apache 2
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.codehaus.jettison jettison Apache License, Version 2.0
org.eclipse.persistence jakarta.persistence Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.jpa Eclipse Public License v. 2.0-Eclipse Distribution License v. 1.0
org.freemarker freemarker Apache License, Version 2.0
org.mnode.ical4j ical4j
composer-ffmpeg
GroupId ArtifactId Licenses
com.google.code.gson gson Apache 2.0
commons-io commons-io Apache License, Version 2.0
jakarta.activation jakarta.activation-api EDL 1.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.felix org.apache.felix.fileinstall Apache License, Version 2.0
org.codehaus.plexus plexus-utils Apache License, Version 2.0
org.slf4j slf4j-api MIT License
composer-service-api
GroupId ArtifactId Licenses
commons-io commons-io Apache License, Version 2.0
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
org.apache.commons commons-lang3 Apache License, Version 2.0
composer-service-remote
GroupId ArtifactId Licenses
commons-io commons-io Apache License, Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.slf4j slf4j-api MIT License
composer-workflowoperation
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
commons-io commons-io Apache License, Version 2.0
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
conductor
GroupId ArtifactId Licenses
com.entwinemedia.common functional Apache License, Version 2.0
commons-io commons-io Apache License, Version 2.0
org.slf4j slf4j-api MIT License
cover-image-impl
GroupId ArtifactId Licenses
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
org.apache.servicemix.bundles org.apache.servicemix.bundles.xalan The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-anim The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-awt-util The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-bridge The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-codec The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-css The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-dom The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-ext The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-gvt The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-js Mozilla Public License version 1.1
org.apache.xmlgraphics batik-parser The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-rasterizer The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-script The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-svg-dom The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-svggen The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-transcoder The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-util The Apache Software License, Version 2.0
org.apache.xmlgraphics batik-xml The Apache Software License, Version 2.0
org.slf4j slf4j-log4j12 MIT License
xml-apis xml-apis-ext
cover-image-remote
GroupId ArtifactId Licenses
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.slf4j slf4j-api MIT License
cover-image-workflowoperation
GroupId ArtifactId Licenses
commons-io commons-io Apache License, Version 2.0
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
crop-ffmpeg
GroupId ArtifactId Licenses
commons-io commons-io Apache License, Version 2.0
jakarta.ws.rs jakarta.ws.rs-api EPL 2.0-GPL2 w/ CPE
jakarta.xml.bind jakarta.xml.bind-api Eclipse Distribution License - v 1.0
javax.servlet javax.servlet-api CDDL + GPLv2 with classpath exception
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
crop-remote
GroupId ArtifactId Licenses
org.slf4j slf4j-api MIT License
crop-workflowoperation
GroupId ArtifactId Licenses
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
db
GroupId ArtifactId Licenses
com.h2database h2 The H2 License, Version 1.0
com.mchange c3p0 GNU Lesser General Public License, Version 2.1-Eclipse Public License, Version 1.0
com.mchange mchange-commons-java GNU Lesser General Public License, Version 2.1-Eclipse Public License, Version 1.0
com.typesafe config -
mysql mysql-connector-java The GNU General Public License, Version 2
net.java.dev.jna jna LGPL, version 2.1-ASL, version 2
org.postgresql postgresql -
org.slf4j slf4j-api MIT License
dictionary-hunspell
GroupId ArtifactId Licenses
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License
dictionary-regexp
GroupId ArtifactId Licenses
org.apache.commons commons-lang3 Apache License, Version 2.0
org.slf4j slf4j-api MIT License