Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCITATION.cff
More file actions
1709 lines (1707 loc) · 56.6 KB
/
Copy pathCITATION.cff
File metadata and controls
1709 lines (1707 loc) · 56.6 KB
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
cff-version: 1.2.0
type: software
message: If you use this software, please cite it as below.
title: Hexatomic
abstract: |-
Hexatomic is an extensible, OS-independent platform for deep multi-layer linguistic annotation of corpora.
It is being developed for sustainability, in order to support research software re-use rather than new development of software with each new research project.
Using Hexatomic, linguistic research projects can implement what they need on top of an existing platform.
To safeguard compatibility, Hexatomic works on instances of Salt projects. Salt is a generic metamodel for linguistic data.
authors:
- family-names: Druskat
given-names: Stephan
orcid: https://orcid.org/0000-0003-4925-7248
affiliation: German Aerospace Center (DLR), Friedrich Schiller University Jena
email: stephan.druskat@dlr.de
- family-names: Krause
given-names: Thomas
orcid: https://orcid.org/0000-0003-3731-2422
affiliation: Humboldt-Universität zu Berlin
- family-names: Lachenmaier
given-names: Clara
orcid: https://orcid.org/0000-0002-9207-3420
- family-names: Bunzeck
given-names: Bastian
repository-code: https://github.com/hexatomic/hexatomic
url: https://hexatomic.github.io
license: Apache-2.0
identifiers:
- description: This is the collection of archived snapshots of all versions of Hexatomic.
Make sure that you cite the specific version you have used in your work with its
version DOI!
type: doi
value: 10.5281/zenodo.6900689
doi: 10.5281/zenodo.6900689
version: 1.5.0-SNAPSHOT
date-released: 2024-10-24
references:
- type: art
title: Font Awesome
license: CC-BY-4.0
license-url: https://creativecommons.org/licenses/by/4.0/
authors:
- name: Fonticons, Inc.
format: SVG
notes: Located im folder bundles/org.corpus_tools.hexatomic.core/icons/fontawesome/.
Some of the files have been resized and converted from the original SVG format
to PNG.
version: null
- type: software
title: SWT Resource Manager
license: EPL-1.0
authors:
- name: Google, Inc.
- type: software
title: ANTLR 4 Runtime
version: 4.7.2.v20221112-0806
license: BSD-3-Clause
authors:
- name: The ANTLR Project
notes: More license information can be found in the THIRD-PARTY/org.antlr.runtime
directory.
- type: software
title: Animal Sniffer Annotations
version: '1.9'
abbreviation: org.codehaus.mojo:animal-sniffer-annotations
license: MIT
notes: More license information can be found in the THIRD-PARTY/Animal_Sniffer_Annotations
directory.
authors:
- name: Kohsuke Kaw
- name: Stephen Connolly
repository-code: http://fisheye.codehaus.org/browse/mojo/tags/animal-sniffer-parent-1.9/animal-sniffer-annotations
- type: software
title: Bouncy Castle OpenPGP API
version: '1.72'
abbreviation: org.bouncycastle:bcpg-jdk18on
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Bouncy_Castle_OpenPGP_API
directory.
authors:
- name: The Legion of the Bouncy Castle Inc.
repository-code: https://github.com/bcgit/bc-java
- type: software
title: Bouncy Castle Provider
version: '1.72'
abbreviation: org.bouncycastle:bcprov-jdk18on
license: MIT
notes: More license information can be found in the THIRD-PARTY/Bouncy_Castle_Provider
directory.
authors:
- name: The Legion of the Bouncy Castle Inc.
repository-code: https://github.com/bcgit/bc-java
- type: software
title: ICU4J
version: '72.1'
abbreviation: com.ibm.icu:icu4j
license: Unicode-DFS-2016
notes: More license information can be found in the THIRD-PARTY/ICU4J directory.
authors:
- name: Mark Davis
- name: John Emmons
- name: Doug Felt
- name: Deborah Goldsmith
- name: Steven Loomis
- name: Markus Scherer
- name: Peter Edberg
- name: Yoshito Umaoka
repository-code: https://github.com/unicode-org/icu
- type: software
title: Java Native Access
version: 5.12.1
abbreviation: net.java.dev.jna:jna
license: Apache-2.0 OR LGPL-2.1-or-later
notes: More license information can be found in the THIRD-PARTY/Java_Native_Access
directory.
authors:
- name: Timothy Wall
- name: Matthias Bläsing
repository-code: https://github.com/java-native-access/jna
- type: software
title: Java Native Access Platform
version: 5.12.1
abbreviation: net.java.dev.jna:jna-platform
license: LGPL-2.1 OR Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Java_Native_Access_Platform
directory.
authors:
- name: Timothy Wall
- name: Matthias Bläsing
repository-code: https://github.com/java-native-access/jna
- type: software
title: Neo Visionaries Internationalization Package
version: '1.1'
abbreviation: com.neovisionaries:nv-i18n
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Neo_Visionaries_Internationalization_Package
directory.
authors:
- name: Takahiko Kawasaki
- type: software
title: SAT4J core
version: 2.3.6
abbreviation: org.ow2.sat4j:org.ow2.sat4j.core
license: EPL-1.0
notes: More license information can be found in the THIRD-PARTY/SAT4J_core directory.
authors:
- name: Daniel Le Berre
- name: Stephanie Roussel
- name: Emmanuel Lonca
repository-code: https://gitlab.ow2.org/sat4j/sat4j/org.ow2.sat4j.core/
- type: software
title: SAT4J pseudo
version: 2.3.6
abbreviation: org.ow2.sat4j:org.ow2.sat4j.pb
license: EPL-1.0
notes: More license information can be found in the THIRD-PARTY/SAT4J_pseudo directory.
authors:
- name: Daniel Le Berre
- name: Anne Parrain
repository-code: https://gitlab.ow2.org/sat4j/sat4j/org.ow2.sat4j.pb/
- type: software
title: Simple Logging Facade for Java
abbreviation: SLF4J
version: 1.7.30.v20221112-0806
license: MIT
authors:
- name: QOS.ch
website: http://www.slf4j.org
notes: More license information can be found in the THIRD-PARTY/org.slf4j.api directory.
- type: software
title: XZ for Java
version: '1.9'
abbreviation: org.tukaani:xz
license: OTHER
notes: More license information can be found in the THIRD-PARTY/XZ_for_Java directory.
authors:
- name: Lasse Collin
repository-code: https://git.tukaani.org/?p=xz-java.git
- type: software
title: ch.qos.logback.classic
version: 1.2.3.v20221112-0806
license: EPL-1.0
authors:
- name: QOS.ch
website: http://logback.qos.ch
notes: More license information can be found in the THIRD-PARTY/ch.qos.logback.classic
directory.
- type: software
title: ch.qos.logback.core
version: 1.2.3.v20221112-0806
license: EPL-1.0
authors:
- name: QOS.ch
website: http://logback.qos.ch
notes: More license information can be found in the THIRD-PARTY/ch.qos.logback.core
directory.
- type: software
title: ch.qos.logback.slf4j
version: 1.2.3.v20221112-0806
license: EPL-1.0
authors:
- name: QOS.ch
website: http://logback.qos.ch
notes: More license information can be found in the THIRD-PARTY/ch.qos.logback.slf4j
directory.
- type: software
title: com.fasterxml.woodstox.woodstox-core
version: 5.0.3
license: Apache-2.0
authors:
- name: The com.fasterxml.woodstox.woodstox-core 5.0.3 Team
- type: software
title: com.google.guava
version: 19.0.0
authors:
- name: The com.google.guava 19.0.0 Team
- type: software
title: javax.annotation
version: 1.3.5.v20221112-0806
license: EPL-1.0
authors:
- name: Sun
- name: Glassfish project
notes: More license information can be found in the THIRD-PARTY/javax.annotation
directory.
- type: software
title: javax.inject
version: 1.0.0.v20220405-0441
license: EPL-1.0
authors:
- name: atinject project
notes: More license information can be found in the THIRD-PARTY/javax.inject directory.
- type: software
title: json
version: 20160810.0.0
authors:
- name: The json 20160810.0.0 Team
- type: software
title: org.apache.batik.constants
version: 1.16.0.v20221027-0840
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.batik.constants
directory.
- type: software
title: org.apache.batik.css
version: 1.16.0.v20221027-0840
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.batik.css
directory.
- type: software
title: org.apache.batik.i18n
version: 1.16.0.v20221027-0840
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.batik.i18n
directory.
- type: software
title: org.apache.batik.util
version: 1.16.0.v20221027-0840
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.batik.util
directory.
- type: software
title: org.apache.commons.codec
version: 1.14.0.v20221112-0806
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.commons.codec
directory.
- type: software
title: org.apache.commons.jxpath
version: 1.3.0.v200911051830
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.commons.jxpath
directory.
- type: software
title: org.apache.commons.lang3
version: 3.4.0
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.commons.lang3
directory.
- type: software
title: org.apache.commons.logging
version: 1.2.0.v20180409-1502
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.commons.logging
directory.
- type: software
title: org.apache.felix.gogo.command
version: 1.1.2
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.felix.gogo.command
directory.
- type: software
title: org.apache.felix.gogo.runtime
version: 1.1.6
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.felix.gogo.runtime
directory.
- type: software
title: org.apache.felix.gogo.shell
version: 1.1.4
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.felix.gogo.shell
directory.
- type: software
title: org.apache.felix.scr
version: 2.2.4
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.felix.scr
directory.
- type: software
title: org.apache.httpcomponents.client5.httpclient5
version: 5.1.3.v20221013-1742
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.httpcomponents.client5.httpclient5
directory.
- type: software
title: org.apache.httpcomponents.client5.httpclient5-win
version: 5.1.3.v20221013-1742
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.httpcomponents.client5.httpclient5-win
directory.
- type: software
title: org.apache.httpcomponents.core5.httpcore5
version: 5.1.4.v20221013-1742
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.httpcomponents.core5.httpcore5
directory.
- type: software
title: org.apache.httpcomponents.core5.httpcore5-h2
version: 5.1.4.v20221013-1742
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.httpcomponents.core5.httpcore5-h2
directory.
- type: software
title: org.apache.xmlgraphics
version: 2.7.0.v20221018-0736
license: Apache-2.0
authors:
- name: Apache Software Foundation
notes: More license information can be found in the THIRD-PARTY/org.apache.xmlgraphics
directory.
- type: software
title: org.corpus-tools.pepper-framework
version: 3.6.0
authors:
- name: The org.corpus-tools.pepper-framework 3.6.0 Team
- type: software
title: org.corpus-tools.salt-api
version: 3.4.3
license: Apache-2.0
authors:
- name: The org.corpus-tools.salt-api 3.4.3 Team
- type: software
title: org.corpus-tools.salt-extensions
version: 3.4.3
authors:
- name: The org.corpus-tools.salt-extensions 3.4.3 Team
- type: software
title: org.eclipse.core.commands
version: 3.10.300.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.commands
directory.
- type: software
title: org.eclipse.core.contenttype
version: 3.8.200.v20220817-1539
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.contenttype
directory.
- type: software
title: org.eclipse.core.databinding
version: 1.11.200.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.databinding
directory.
- type: software
title: org.eclipse.core.databinding.beans
version: 1.9.0.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.databinding.beans
directory.
- type: software
title: org.eclipse.core.databinding.observable
version: 1.12.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.databinding.observable
directory.
- type: software
title: org.eclipse.core.databinding.property
version: 1.9.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.databinding.property
directory.
- type: software
title: org.eclipse.core.expressions
version: 3.8.200.v20220613-1047
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.expressions
directory.
- type: software
title: org.eclipse.core.jobs
version: 3.13.200.v20221102-1024
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.jobs
directory.
- type: software
title: org.eclipse.core.runtime
version: 3.26.100.v20221021-0005
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.core.runtime
directory.
- type: software
title: org.eclipse.draw2d
version: 3.12.0.202211301913
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.draw2d
directory.
- type: software
title: org.eclipse.e4.core.commands
version: 1.0.300.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.commands
directory.
- type: software
title: org.eclipse.e4.core.contexts
version: 1.11.0.v20220716-0839
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.contexts
directory.
- type: software
title: org.eclipse.e4.core.di
version: 1.8.300.v20220817-1539
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.di
directory.
- type: software
title: org.eclipse.e4.core.di.annotations
version: 1.7.200.v20220613-1008
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.di.annotations
directory.
- type: software
title: org.eclipse.e4.core.di.extensions
version: 0.17.200.v20220613-1008
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.di.extensions
directory.
- type: software
title: org.eclipse.e4.core.di.extensions.supplier
version: 0.16.400.v20220613-1047
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.di.extensions.supplier
directory.
- type: software
title: org.eclipse.e4.core.services
version: 2.3.400.v20220915-1347
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.core.services
directory.
- type: software
title: org.eclipse.e4.emf.xpath
version: 0.3.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.emf.xpath
directory.
- type: software
title: org.eclipse.e4.rcp
version: 4.26.0.v20221123-2302
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.rcp
directory.
- type: software
title: org.eclipse.e4.ui.bindings
version: 0.13.200.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.bindings
directory.
- type: software
title: org.eclipse.e4.ui.css.core
version: 0.13.400.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.css.core
directory.
- type: software
title: org.eclipse.e4.ui.css.swt
version: 0.14.700.v20221102-0748
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.css.swt
directory.
- type: software
title: org.eclipse.e4.ui.css.swt.theme
version: 0.13.200.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.css.swt.theme
directory.
- type: software
title: org.eclipse.e4.ui.di
version: 1.4.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.di
directory.
- type: software
title: org.eclipse.e4.ui.dialogs
version: 1.3.400.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.dialogs
directory.
- type: software
title: org.eclipse.e4.ui.model.workbench
version: 2.2.300.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.model.workbench
directory.
- type: software
title: org.eclipse.e4.ui.services
version: 1.5.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.services
directory.
- type: software
title: org.eclipse.e4.ui.swt.gtk
version: 1.1.200.v20221111-1208
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.swt.gtk
directory.
- type: software
title: org.eclipse.e4.ui.swt.win32
version: 1.1.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.swt.win32
directory.
- type: software
title: org.eclipse.e4.ui.widgets
version: 1.3.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.widgets
directory.
- type: software
title: org.eclipse.e4.ui.workbench
version: 1.14.0.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.workbench
directory.
- type: software
title: org.eclipse.e4.ui.workbench.addons.swt
version: 1.4.500.v20221028-0801
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.workbench.addons.swt
directory.
- type: software
title: org.eclipse.e4.ui.workbench.renderers.swt
version: 0.15.700.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.workbench.renderers.swt
directory.
- type: software
title: org.eclipse.e4.ui.workbench.renderers.swt.cocoa
version: 0.13.0.v20221111-1208
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.workbench.renderers.swt.cocoa
directory.
- type: software
title: org.eclipse.e4.ui.workbench.swt
version: 0.16.700.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.workbench.swt
directory.
- type: software
title: org.eclipse.e4.ui.workbench3
version: 0.16.100.v20221024-2137
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.e4.ui.workbench3
directory.
- type: software
title: org.eclipse.ecf
version: 3.10.0.v20210925-0032
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf
directory.
- type: software
title: org.eclipse.ecf.core.feature
version: 1.6.1.v20211005-1944
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.core.feature
directory.
- type: software
title: org.eclipse.ecf.core.ssl.feature
version: 1.1.501.v20210409-2301
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.core.ssl.feature
directory.
- type: software
title: org.eclipse.ecf.filetransfer
version: 5.1.102.v20210409-2301
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.filetransfer
directory.
- type: software
title: org.eclipse.ecf.filetransfer.feature
version: 3.14.1800.v20220215-0126
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.filetransfer.feature
directory.
- type: software
title: org.eclipse.ecf.filetransfer.httpclient5.feature
version: 1.1.701.v20221112-0806
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.filetransfer.httpclient5.feature
directory.
- type: software
title: org.eclipse.ecf.filetransfer.ssl.feature
version: 1.1.401.v20210409-2301
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.filetransfer.ssl.feature
directory.
- type: software
title: org.eclipse.ecf.identity
version: 3.9.402.v20210409-2301
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.identity
directory.
- type: software
title: org.eclipse.ecf.provider.filetransfer
version: 3.2.800.v20220215-0126
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.provider.filetransfer
directory.
- type: software
title: org.eclipse.ecf.provider.filetransfer.httpclient5
version: 1.0.401.v20221105-0315
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.provider.filetransfer.httpclient5
directory.
- type: software
title: org.eclipse.ecf.provider.filetransfer.httpclient5.win32
version: 1.0.501.v20221105-0315
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.provider.filetransfer.httpclient5.win32
directory.
- type: software
title: org.eclipse.ecf.provider.filetransfer.ssl
version: 1.0.201.v20210409-2301
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.provider.filetransfer.ssl
directory.
- type: software
title: org.eclipse.ecf.ssl
version: 1.2.401.v20210409-2301
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.ecf.ssl
directory.
- type: software
title: org.eclipse.emf.common
version: 2.27.0.v20221121-1400
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.emf.common
directory.
- type: software
title: org.eclipse.emf.ecore
version: 2.29.0.v20221121-1400
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.emf.ecore
directory.
- type: software
title: org.eclipse.emf.ecore.change
version: 2.14.0.v20190528-0725
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.emf.ecore.change
directory.
- type: software
title: org.eclipse.emf.ecore.xmi
version: 2.17.0.v20220817-1334
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.emf.ecore.xmi
directory.
- type: software
title: org.eclipse.equinox.app
version: 1.6.200.v20220720-2012
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.app
directory.
- type: software
title: org.eclipse.equinox.bidi
version: 1.4.200.v20220710-1223
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.bidi
directory.
- type: software
title: org.eclipse.equinox.common
version: 3.17.0.v20221108-1156
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.common
directory.
- type: software
title: org.eclipse.equinox.concurrent
version: 1.2.100.v20211021-1418
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.concurrent
directory.
- type: software
title: org.eclipse.equinox.console
version: 1.4.500.v20211021-1418
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.console
directory.
- type: software
title: org.eclipse.equinox.core.feature
version: 1.13.900.v20221116-1440
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.core.feature
directory.
- type: software
title: org.eclipse.equinox.event
version: 1.6.100.v20211021-1418
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.event
directory.
- type: software
title: org.eclipse.equinox.executable
version: 3.8.1900.v20221108-1024
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.executable
directory.
- type: software
title: org.eclipse.equinox.executable_root.cocoa.macosx.x86_64
version: 3.8.1900.v20221108-1024
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.executable_root.cocoa.macosx.x86_64
directory.
- type: software
title: org.eclipse.equinox.executable_root.gtk.linux.x86_64
version: 3.8.1900.v20221108-1024
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.executable_root.gtk.linux.x86_64
directory.
- type: software
title: org.eclipse.equinox.executable_root.win32.win32.x86_64
version: 3.8.1900.v20221108-1024
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.executable_root.win32.win32.x86_64
directory.
- type: software
title: org.eclipse.equinox.frameworkadmin
version: 2.2.100.v20220817-1208
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.frameworkadmin
directory.
- type: software
title: org.eclipse.equinox.frameworkadmin.equinox
version: 1.2.200.v20220315-2155
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.frameworkadmin.equinox
directory.
- type: software
title: org.eclipse.equinox.launcher
version: 1.6.400.v20210924-0641
license: EPL-2.0
authors:
- name: The Eclipse Foundation
website: https://www.eclipse.org/
notes: More license information can be found in the THIRD-PARTY/org.eclipse.equinox.launcher
directory.
- type: software
title: org.eclipse.equinox.launcher.cocoa.macosx.x86_64
version: 1.2.700.v20221108-1024
license: EPL-2.0
authors:
- name: The Eclipse Foundation
You can’t perform that action at this time.
