summaryrefslogtreecommitdiff
path: root/platform/build-scripts/groovy/org/jetbrains/intellij/build/CommunityLibraryLicenses.groovy
blob: 3c9960bc8c32128d5f4acaead1889005946d6668 (plain)
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
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.intellij.build

import groovy.transform.CompileStatic

import static org.jetbrains.intellij.build.LibraryLicense.jetbrainsLibrary

/**
 * Defines information about licenses of libraries located in 'community', 'contrib' and 'android' repositories.
 */
@CompileStatic
final class CommunityLibraryLicenses {
  @SuppressWarnings("SpellCheckingInspection")
  public static final List<LibraryLicense> LICENSES_LIST = [
    new LibraryLicense(name: "aalto-xml", libraryName: "aalto-xml", url: "https://github.com/FasterXML/aalto-xml/").apache(),
    new LibraryLicense(name: "AAPT Protos", libraryName: "aapt-proto", url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "AhoCorasickDoubleArrayTrie", libraryName: "com.hankcs:aho-corasick-double-array-trie:1.2.2",
                       url: "https://github.com/hankcs/AhoCorasickDoubleArrayTrie").apache(),
    new LibraryLicense(name: "Am Instrument Data proto", libraryName: "libam-instrumentation-data-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Amazon Ion Java", libraryName: "ion", url: "https://github.com/amzn/ion-java").apache(),
    new LibraryLicense(name: "android-test-plugin-host-device-info-proto", libraryName: "android-test-plugin-host-device-info-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "android-test-plugin-host-retention-proto", libraryName: "libstudio.android-test-plugin-host-retention-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "android-test-plugin-result-listener-gradle-proto", libraryName: "android-test-plugin-result-listener-gradle-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android AIA Protos", libraryName: "aia-proto", url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Analytics Crash", libraryName: "precompiled-analytics-crash",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Analytics Protos", libraryName: "studio-analytics-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Analytics Shared", libraryName: "precompiled-analytics-shared",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Analytics Tracker", libraryName: "precompiled-analytics-tracker",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Annotations", libraryName: "precompiled-android-annotations",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Apk Analyzer", libraryName: "precompiled-analyzer",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Apk Binary Resources", libraryName: "precompiled-binary-resources",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Apk ZLib", libraryName: "apkzlib",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android App Inspector (Background Task, proto)", libraryName: "background-inspector-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android App Inspector (Network, proto)", libraryName: "network_inspector_java_proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Archive Patcher (explainer)", libraryName: "explainer",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Archive Patcher (generator)", libraryName: "generator",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Archive Patcher (shared)", libraryName: "shared",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Baksmali", libraryName: "baksmali", url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Builder Model", libraryName: "precompiled-builder-model",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Builder Test Api", libraryName: "precompiled-builder-test-api",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Chunkio", libraryName: "precompiled-chunkio",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Common Library", libraryName: "precompiled-common",
                       url: "https://source.android.com/").apache(),
    // for android-core-proto module library in intellij.android.core
    new LibraryLicense(name: "Android Core Protos", libraryName: "libandroid-core-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Data Binding Base Library", libraryName: "precompiled-db-baseLibrary",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Data Binding Base Library Support", libraryName: "precompiled-db-baseLibrarySupport",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Data Binding Compiler", libraryName: "precompiled-db-compiler",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Data Binding Compiler Common", libraryName: "precompiled-db-compilerCommon",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Ddm libapp-processes-proto", libraryName: "libapp-processes-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Ddm Library", libraryName: "precompiled-ddmlib",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Deployer Library", libraryName: "precompiled-deployer",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Deployer Library (libjava_sites)", libraryName: "libjava_sites",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android DEX library", libraryName: "dexlib2", url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android draw9patch library", libraryName: "precompiled-draw9patch",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android dvlib library", libraryName: "precompiled-dvlib", url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Dynamic Layout Inspector", libraryName: "precompiled-dynamic-layout-inspector.common",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Emulator gRPC API", libraryName: "emulator-proto").apache(),
    new LibraryLicense(name: "Android Flags", libraryName: "precompiled-flags",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Gradle model", attachedTo: "intellij.android.core", version: "0.4-SNAPSHOT",
                       url: "https://android.googlesource.com/platform/tools/build/+/master/gradle-model/").apache(),
    new LibraryLicense(name: "Android Instant Apps SDK API", libraryName: "instantapps-api",
                       version: LibraryLicense.CUSTOM_REVISION).apache(),
    new LibraryLicense(name: "Android Jetifier Core", libraryName: "jetifier-core", url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Jimfs library", libraryName: "jimfs", url: "https://github.com/google/jimfs").apache(),
    new LibraryLicense(name: "Android Layout Api Library", libraryName: "precompiled-layoutlib-api",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Inspector", libraryName: "precompiled-layoutinspector",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Inspector (Compose Proto)", libraryName: "layoutinspector-compose-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Inspector (Skia Proto)", libraryName: "layoutinspector-skia-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Inspector (View Proto)", libraryName: "layoutinspector-view-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Library (Legacy)",
                       libraryName: "layoutlib-legacy",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Library (Native)", libraryName: "layoutlib",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Layout Library (Native)", libraryName: "jb-layoutlib-native-jdk11",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android libwebp library", libraryName: "libwebp.jar",
                       url: "https://github.com/webmproject/libwebp",
                       version: LibraryLicense.CUSTOM_REVISION).apache(),
    new LibraryLicense(name: "Android Lint Api", libraryName: "precompiled-lint-api",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Lint Checks", libraryName: "precompiled-lint-checks",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Lint Model", libraryName: "precompiled-lint-model",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Manifest Merger", libraryName: "precompiled-manifest-merger",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android MLKit Common Library", libraryName: "precompiled-mlkit-common",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android ninepatch Library", libraryName: "precompiled-ninepatch",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Perf-Logger Library", libraryName: "precompiled-perf-logger",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Perflib Library", libraryName: "precompiled-perflib",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Pixelprobe Library", libraryName: "precompiled-pixelprobe",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Profiler", libraryName: "studio-grpc",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Repository", libraryName: "precompiled-repository",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Sdk Common", libraryName: "precompiled-sdk-common",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Sdk Lib", libraryName: "precompiled-sdklib",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android STracer", libraryName: "precompiled-tracer",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android USB Devices", libraryName: "precompiled-usb-devices",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Wizard Template", libraryName: "precompiled-wizardTemplate.impl",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Wizard Template Plugin", libraryName: "precompiled-wizardTemplate.plugin",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Android Zipflinger", libraryName: "precompiled-zipflinger",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "AndroidX Test Library", libraryName: "utp-core-proto",
                       url: "https://source.android.com/").apache(),
    // for androidx-test-core-proto module library in intellij.android.core
    new LibraryLicense(name: "AndroidX Test Library core protos", libraryName: "androidx-test-core-proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "ANTLR 4 Runtime", libraryName: "antlr4-runtime",
                       url: "https://www.antlr.org", licenseUrl: "https://www.antlr.org/license.html").newBsd(),
    new LibraryLicense(name: "ANTLR 4 Runtime", libraryName: "antlr4-runtime-4.9",
                       url: "https://www.antlr.org", licenseUrl: "https://www.antlr.org/license.html").newBsd(),
    new LibraryLicense(name: "ap-validation", libraryName: "ap-validation",
                       url: "https://github.com/JetBrains/ap-validation").apache(),
    new LibraryLicense(name: "Apache Ant", version: "1.9", libraryName: "Ant", url: "https://ant.apache.org/",
                       licenseUrl: "https://ant.apache.org/license.html").apache(),
    new LibraryLicense(name: "Apache Axis", libraryName: "axis-1.4", version: "1.4", url: "https://ws.apache.org/axis/").apache(),
    new LibraryLicense(name: "Apache Commons BeanUtils", libraryName: "commons-beanutils.jar", version: "1.6",
                       url: "https://commons.apache.org/beanutils/").apache(),
    new LibraryLicense(name: "Apache Commons CLI", libraryName: "commons-cli",
                       url: "https://commons.apache.org/cli/").apache(),
    new LibraryLicense(name: "Apache Commons Codec", libraryName: "commons-codec", url: "https://commons.apache.org/codec/").apache(),
    new LibraryLicense(name: "Apache Commons Collections", libraryName: "commons-collections",
                       url: "https://commons.apache.org/proper/commons-collections/").apache(),
    new LibraryLicense(name: "Apache Commons Compress", libraryName: "commons-compress",
                       url: "https://commons.apache.org/proper/commons-compress/").apache(),
    new LibraryLicense(name: "Apache Commons Discovery", libraryName: "commons-discovery",
                       url: "https://jakarta.apache.org/commons/discovery/").apache(),
    new LibraryLicense(name: "Apache Commons HTTPClient", libraryName: "http-client-3.1", version: "3.1&nbsp; (with patch by JetBrains)",
                       url: "https://hc.apache.org/httpclient-3.x").apache(),
    new LibraryLicense(name: "Apache Commons Imaging (JetBrains's fork)", libraryName: "commons-imaging",
                       url: "https://github.com/JetBrains/intellij-deps-commons-imaging").apache(),
    new LibraryLicense(name: "Apache Commons IO", libraryName: "commons-io",
                       url: "https://commons.apache.org/io/").apache(),
    new LibraryLicense(name: "Apache Commons Lang", libraryName: "commons-lang",
                       url: "https://commons.apache.org/proper/commons-lang/").apache(),
    new LibraryLicense(name: "Apache Commons Lang", libraryName: "commons-lang3",
                       url: "https://commons.apache.org/proper/commons-lang/").apache(),
    new LibraryLicense(name: "Apache Commons Logging", libraryName: "commons-logging",
                       url: "https://commons.apache.org/logging/").apache(),
    new LibraryLicense(name: "Apache Commons Net", libraryName: "commons-net",
                       url: "https://commons.apache.org/net/").apache(),
    new LibraryLicense(name: "Apache Commons Text", libraryName: "org.apache.commons:commons-text:1.8",
                       url: "https://github.com/apache/commons-text").apache(),
    new LibraryLicense(name: "Apache Ivy", libraryName: "org.apache.ivy", url: "https://github.com/apache/ant-ivy").apache(),
    new LibraryLicense(name: "Apache Lucene",
                       libraryName: "lucene-core", url: "https://lucene.apache.org/java",
                       additionalLibraryNames: [
                         "lucene-suggest",
                         "lucene-memory",
                         "lucene-sandbox",
                         "lucene-codecs",
                         "lucene-highlighter",
                         "lucene-queryparser",
                         "lucene-queries",
                         "lucene-analyzers-common",
                         "org.apache.lucene:lucene-core:2.4.1"
                         ]).apache(),
    new LibraryLicense(name: "Apache Tuweni-Toml", libraryName: "tuweni-toml",
                       url: "https://github.com/apache/incubator-tuweni/tree/main/toml").apache(),
    new LibraryLicense(name: "ASM (JetBrains's fork)", libraryName: "ASM",
                       url: "https://github.com/JetBrains/intellij-deps-asm",
                       licenseUrl: "https://github.com/JetBrains/intellij-deps-asm/blob/master/LICENSE.txt",
                       additionalLibraryNames: ["asm-capture"]).newBsd(),
    new LibraryLicense(name: "ASM Tools", libraryName: "asm-tools", url: "https://asm.objectweb.org/",
                       licenseUrl: "https://asm.objectweb.org/license.html").newBsd(),
    new LibraryLicense(name: "AssertJ fluent assertions", libraryName: "assertJ",
                       url: "https://joel-costigliola.github.io/assertj/").apache(),
    new LibraryLicense(name: "AssertJ Swing", libraryName: "assertj-swing",
                       url: "https://github.com/assertj/assertj-swing").apache(),
    new LibraryLicense(name: "Automaton", libraryName: "automaton", url: "https://www.brics.dk/automaton/").simplifiedBsd(),
    new LibraryLicense(name: "batik", libraryName: "batik-transcoder", url: "https://xmlgraphics.apache.org/batik/").apache(),
    new LibraryLicense(name: "batik", libraryName: "batik-codec", url: "https://xmlgraphics.apache.org/batik/").apache(),
    new LibraryLicense(name: "blockmap", libraryName: "org.jetbrains.intellij:blockmap:1.0.2",
                       url: "https://packages.jetbrains.team/maven/p/ij/intellij-dependencies/org/jetbrains/intellij/blockmap/").apache(),
    new LibraryLicense(libraryName: "bouncy-castle-provider", url: "https://bouncycastle.org",
                       licenseUrl: "https://bouncycastle.org/licence.html").mit(),
    new LibraryLicense(name: "Byte Buddy agent", libraryName: "byte-buddy-agent",
                       url: "https://github.com/raphw/byte-buddy").apache(),
    new LibraryLicense(name: "caffeine", libraryName: "caffeine",
                       url: "https://github.com/ben-manes/caffeine",
                       licenseUrl: "https://github.com/ben-manes/caffeine/blob/master/LICENSE").apache(),
    new LibraryLicense(name: "CGLib", libraryName: "CGLIB", url: "https://cglib.sourceforge.net/").apache(),
    new LibraryLicense(name: "classgraph", libraryName: "classgraph",
                       url: "https://github.com/classgraph/classgraph",
                       licenseUrl: "https://github.com/codehaus/classworlds/blob/master/classworlds/LICENSE.txt").mit(),
    new LibraryLicense(name: "classworlds", libraryName: "Maven", transitiveDependency: true, version: "1.1", license: "codehaus",
                       url: "https://github.com/codehaus/classworlds",
                       licenseUrl: "https://github.com/codehaus/classworlds/blob/master/classworlds/LICENSE.txt"),
    new LibraryLicense(name: "Common Annotations for the JavaTM Platform API", libraryName: "javax.annotation-api",
                       url: "https://github.com/javaee/javax.annotation",
                       license: "CDDL 1.1 / GPL 2.0 + Classpath", licenseUrl: "https://oss.oracle.com/licenses/CDDL+GPL-1.1"),
    // for ui-animation-tooling-internal module library in intellij.android.compose-designer
    new LibraryLicense(name: "Compose Animation Tooling", libraryName: "ui-animation-tooling-internal", version: "0.1.0-SNAPSHOT",
                       url: "https://source.android.com/").apache(),
    // For ADB wireless QR Code generation
    new LibraryLicense(name: "Core barcode encoding/decoding library", libraryName: "zxing-core").apache(),
    new LibraryLicense(name: "coverage-report", libraryName: "coverage-report",
                       url: "https://github.com/JetBrains/coverage-report").apache(),
    new LibraryLicense(name: "coverage.py", attachedTo: "intellij.python.helpers", version: "3.7.1",
                       url: "https://coverage.readthedocs.org/").apache(),
    new LibraryLicense(name: "Cucumber-Core", libraryName: "cucumber-core-1.2", url: "https://github.com/cucumber/cucumber-jvm/").mit(),
    new LibraryLicense(name: "Cucumber-Expressions", libraryName: "cucumber-expressions",
                       url: "https://github.com/cucumber/cucumber/").mit(),
    new LibraryLicense(name: "Cucumber-Groovy", libraryName: "cucumber-groovy", url: "https://github.com/cucumber/cucumber-jvm/").mit(),
    new LibraryLicense(name: "Cucumber-Java", libraryName: "cucumber-java", url: "https://github.com/cucumber/cucumber-jvm/").mit(),
    new LibraryLicense(name: "Dart Analysis Server", attachedTo: "intellij.dart",
                       url: "https://github.com/dart-lang/eclipse3", version: LibraryLicense.CUSTOM_REVISION).eplV1(),
    new LibraryLicense(name: "Dart VM Service drivers", attachedTo: "intellij.dart",
                       licenseUrl: "https://github.com/dart-lang/vm_service_drivers/blob/master/LICENSE",
                       url: "https://github.com/dart-lang/vm_service_drivers",
                       version: LibraryLicense.CUSTOM_REVISION).newBsd(),
    new LibraryLicense(name: "dbus-java", libraryName: "dbus-java", license: "LGPL",
                       url: "https://mvnrepository.com/artifact/com.github.hypfvieh/dbus-java"),
    new LibraryLicense(name: "DecentXML", libraryName: "decentxml",
                       license: "New BSD License", licenseUrl: "https://www.opensource.org/licenses/bsd-license.php",
                       url: "https://code.google.com/p/decentxml"),
    new LibraryLicense(name: "docutils", attachedTo: "intellij.python.helpers", version: "0.8", license: "BSD",
                       url: "https://docutils.sourceforge.net/"),
    new LibraryLicense(libraryName: "DTDParser", version: "1.13", license: "LGPL", url: "https://sourceforge.net/projects/dtdparser/",
                       licenseUrl: "https://www.opensource.org/licenses/lgpl-2.1"),
    new LibraryLicense(name: "Eclipse JDT Core", attachedTo: "intellij.platform.jps.build", version: "4.2.1", license: "CPL 1.0",
                       url: "https://www.eclipse.org/jdt/core/index.php"),
    new LibraryLicense(name: "Eclipse Layout Kernel", libraryName: "eclipse-layout-kernel").eplV1(),
    new LibraryLicense(name: "EditorConfig Java Core", libraryName: "editorconfig-core-java.jar", version: "1.0",
                       url: "https://github.com/editorconfig/editorconfig-core-java/",
                       licenseUrl: "https://github.com/editorconfig/editorconfig-core-java/blob/master/LICENSE").apache(),
    new LibraryLicense(name: "emoji-java", libraryName: "com.vdurmont:emoji-java:5.1.1",
                       url: "https://github.com/vdurmont/emoji-java").mit(),
    new LibraryLicense(name: "entities",
                       url: "https://github.com/fb55/entities", attachedTo: "intellij.vuejs",
                       licenseUrl: "https://github.com/fb55/entities/blob/master/LICENSE",
                       version: LibraryLicense.CUSTOM_REVISION).simplifiedBsd(),
    new LibraryLicense(name: "epydoc", attachedTo: "intellij.python.helpers", version: "3.0.1",
                       url: "https://epydoc.sourceforge.net/").mit(),
    new LibraryLicense(name: "error-prone-annotations", libraryName: "error-prone-annotations",
                       url: "https://github.com/google/error-prone",
                       licenseUrl: "https://github.com/google/error-prone/blob/master/COPYING").apache(),
    new LibraryLicense(name: "fastutil", libraryName: "fastutil-min",
                       url: "https://github.com/vigna/fastutil", licenseUrl: "https://github.com/vigna/fastutil/blob/master/LICENSE-2.0").apache(),
    new LibraryLicense(name: "FiraCode", attachedTo: "intellij.platform.resources", version: "1.206", license: "OFL",
                       url: "https://github.com/tonsky/FiraCode/blob/master/LICENSE"),
    // for flatbuffers-java module library in android.sdktools.mlkit-common
    new LibraryLicense(name: "FlatBuffers Java API", libraryName: "flatbuffers-java",
                       url: "https://google.github.io/flatbuffers/").apache(),
    new LibraryLicense(name: "FreeMarker", attachedTo: "intellij.java.coverage", version: "2.3.30",
                       url: "https://freemarker.apache.org", licenseUrl: "https://freemarker.apache.org/docs/app_license.html").apache(),
    new LibraryLicense(name: "Gant", libraryName: "gant-groovy",
                       url: "https://github.com/codehaus/gant", licenseUrl: "https://github.com/codehaus/gant/blob/master/LICENCE.txt").apache(),
    new LibraryLicense(name: "gauge-java", libraryName: "com.thoughtworks.gauge:gauge-java:0.7.3",
                       licenseUrl: "https://raw.githubusercontent.com/getgauge/gauge-java/master/LICENSE.txt").apache(),
    new LibraryLicense(name: "Gherkin", libraryName: "gherkin",
                       licenseUrl: "https://github.com/cucumber/cucumber/blob/master/gherkin/LICENSE",
                       url: "https://github.com/cucumber/cucumber/tree/master/gherkin").mit(),
    new LibraryLicense(name: "Gherkin keywords", attachedTo: "intellij.gherkin", version: "2.12.2",
                       licenseUrl: "https://github.com/cucumber/cucumber/blob/master/gherkin/LICENSE",
                       url: "https://github.com/cucumber/cucumber/tree/master/gherkin").mit(),
    new LibraryLicense(name: "Google Auto Common Utilities", libraryName: "auto-common",
                       url: "https://github.com/google/auto/tree/master/common").apache(),
    new LibraryLicense(name: "Google Drive API V3", libraryName: "google.apis.api.services.drive",
                       url: "https://github.com/googleapis/google-api-java-client-services/tree/master/clients/google-api-services-drive/v3",
                       licenseUrl: "https://github.com/googleapis/google-api-java-client-services/blob/master/LICENSE").apache(),
    new LibraryLicense(libraryName: "Gradle", url: "https://gradle.org/", licenseUrl: "https://gradle.org/license").apache(),
    new LibraryLicense(name: "Grazie AI", libraryName: "ai.grazie.spell:gec-spell-local-engine",
                       additionalLibraryNames: ["ai.grazie.utils:utils-common",
                                                "ai.grazie.nlp:nlp-common",
                                                "ai.grazie.nlp:nlp-tokenizer",
                                                "ai.grazie.spell:hunspell-en",
                                                "ai.grazie:nlp-detector"]).apache(),
    new LibraryLicense(name: "Groovy", libraryName: "org.codehaus.groovy:groovy", url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy Ant", libraryName: "org.codehaus.groovy:groovy-ant", url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy CLI Commons", libraryName: "org.codehaus.groovy:groovy-cli-commons",
                       url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy JSON", libraryName: "org.codehaus.groovy:groovy-json", url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy JSR-223", libraryName: "org.codehaus.groovy:groovy-jsr223", url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy NIO", libraryName: "org.codehaus.groovy:groovy-nio", url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy Templates", libraryName: "org.codehaus.groovy:groovy-templates",
                       url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "Groovy XML", libraryName: "org.codehaus.groovy:groovy-xml",
                       url: "https://groovy-lang.org/").apache(),
    new LibraryLicense(name: "gRPC Kotlin: Stub", libraryName: "grpc-kotlin-stub", url: "https://grpc.io/").apache(),
    new LibraryLicense(name: "gRPC: Core", libraryName: "grpc-core", url: "https://grpc.io/").apache(),
    new LibraryLicense(name: "gRPC: Netty Shaded", libraryName: "grpc-netty-shaded", url: "https://grpc.io/").apache(),
    new LibraryLicense(name: "gRPC: Protobuf", libraryName: "grpc-protobuf", url: "https://grpc.io/").apache(),
    new LibraryLicense(name: "gRPC: Stub", libraryName: "grpc-stub", url: "https://grpc.io/").apache(),
    new LibraryLicense(name: "Gson", libraryName: "gson", url: "https://code.google.com/p/google-gson/").apache(),
    new LibraryLicense(libraryName: "Guava", url: "https://code.google.com/p/guava-libraries/",
                       licenseUrl: "https://ant.apache.org/license.html").apache(),
    new LibraryLicense(name: "Hamcrest", libraryName: "hamcrest", url: "https://hamcrest.org/").newBsd(),
    new LibraryLicense(name: "HDR Histogram", libraryName: "HdrHistogram", license: "CC0 1.0 Universal",
                       licenseUrl: "https://creativecommons.org/publicdomain/zero/1.0/"),
    new LibraryLicense(name: "hppc", libraryName: "com.carrotsearch:hppc:0.8.2").apache(),
    new LibraryLicense(name: "htmlparser2",
                       url: "https://github.com/fb55/htmlparser2", attachedTo: "intellij.vuejs",
                       licenseUrl: "https://github.com/fb55/htmlparser2/blob/master/LICENSE",
                       version: LibraryLicense.CUSTOM_REVISION).mit(),
    new LibraryLicense(name: "HttpComponents HttpClient", libraryName: "http-client",
                       url: "https://hc.apache.org/httpcomponents-client-ga/index.html").apache(),
    new LibraryLicense(name: "HttpComponents HttpClient Fluent API", libraryName: "fluent-hc",
                       url: "https://hc.apache.org/httpcomponents-client-ga/index.html").apache(),
    new LibraryLicense(name: "ICU4J", libraryName: "icu4j", license: "Unicode",
                       url: "https://site.icu-project.org/", licenseUrl: "https://www.unicode.org/copyright.html"),
    new LibraryLicense(name: "imgscalr", libraryName: "imgscalr", url: "https://github.com/thebuzzmedia/imgscalr").apache(),
    new LibraryLicense(name: "Inconsolata", attachedTo: "intellij.platform.resources", version: "001.010", license: "OFL",
                       url: "https://github.com/google/fonts/blob/master/ofl/inconsolata/OFL.txt"),
    new LibraryLicense(name: "Incremental DOM", attachedTo: "intellij.markdown", version: "0.7.0",
                       url: "https://github.com/google/incremental-dom/blob/master/LICENSE").apache(),
    new LibraryLicense(name: "indriya", libraryName: "tech.units:indriya:1.3",
                       url: "https://github.com/unitsofmeasurement/indriya",
                       licenseUrl: "https://github.com/unitsofmeasurement/indriya/blob/master/LICENSE").newBsd(),
    new LibraryLicense(name: "ini4j (JetBrains's fork)", libraryName: "ini4j",
                       url: "https://github.com/JetBrains/intellij-deps-ini4j").apache(),
    new LibraryLicense(name: "Instant run protos", libraryName: "deploy_java_proto",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "Instant run version", libraryName: "libjava_version",
                       url: "https://source.android.com/").apache(),
    new LibraryLicense(name: "ISO RELAX", libraryName: "isorelax", url: "https://sourceforge.net/projects/iso-relax/").mit(),
    new LibraryLicense(name: "Jackson", libraryName: "jackson", url: "https://github.com/FasterXML/jackson").apache(),
    new LibraryLicense(name: "jackson-jr-objects", libraryName: "jackson-jr-objects",
                       url: "https://github.com/FasterXML/jackson-jr").apache(),
    new LibraryLicense(name: "Jackson Databind", libraryName: "jackson-databind",
                       url: "https://github.com/FasterXML/jackson-databind").apache(),
    new LibraryLicense(name: "Jackson Module Kotlin", libraryName: "jackson-module-kotlin",
                       url: "https://github.com/FasterXML/jackson-module-kotlin").apache(),
    new LibraryLicense(name: "JaCoCo", libraryName: "JaCoCo", url: "http://www.eclemma.org/jacoco/").eplV1(),
    new LibraryLicense(name: "Jakarta ORO", libraryName: "OroMatcher",
                       url: "https://jakarta.apache.org/oro/", licenseUrl: "https://svn.apache.org/repos/asf/jakarta/oro/trunk/LICENSE").apache(),
    new LibraryLicense(libraryName: "Java Compatibility", license: "GPL 2.0 + Classpath",
                       url: "https://github.com/JetBrains/intellij-deps-java-compatibility",
                       licenseUrl: "https://raw.githubusercontent.com/JetBrains/intellij-deps-java-compatibility/master/LICENSE"),
    new LibraryLicense(name: "Java Poet", libraryName: "javapoet",
                       url: "https://github.com/square/javapoet").apache(),
    new LibraryLicense(name: "Java Server Pages (JSP) for Visual Studio Code", attachedTo: "intellij.textmate", version: "0.0.3",
                       url: "https://github.com/pthorsson/vscode-jsp",
                       licenseUrl: "https://github.com/pthorsson/vscode-jsp/blob/master/LICENSE").mit(),
    new LibraryLicense(name: "Java String Similarity", libraryName: "java-string-similarity",
                       licenseUrl: "https://github.com/tdebatty/java-string-similarity/blob/master/LICENSE.md",
                       url: "https://github.com/tdebatty/java-string-similarity").mit(),
    new LibraryLicense(name: "JavaBeans Activation Framework", libraryName: "javax.activation",
                       url: "https://github.com/javaee/activation",
                       license: "CDDL 1.1 / GPL 2.0 + Classpath", licenseUrl: "https://oss.oracle.com/licenses/CDDL+GPL-1.1"),
    new LibraryLicense(name: "javaslang", libraryName: "javaslang", url: "https://javaslang.io/").apache(),
    new LibraryLicense(name: "javawriter", attachedTo: "intellij.android.core",
                       url: "https://github.com/square/javawriter",
                       version: LibraryLicense.CUSTOM_REVISION).apache(),
    new LibraryLicense(name: "javax inject", libraryName: "javax-inject",
                       url: "https://code.google.com/p/atinject/").apache(),
    new LibraryLicense(name: "JAXB (Java Architecture for XML Binding) API", libraryName: "jaxb-api",
                       url: "https://github.com/javaee/jaxb-spec",
                       license: "CDDL 1.1 / GPL 2.0 + Classpath", licenseUrl: "https://oss.oracle.com/licenses/CDDL+GPL-1.1"),
    new LibraryLicense(name: "JAXB (JSR 222) Reference Implementation", libraryName: "jaxb-runtime",
                       url: "https://github.com/javaee/jaxb-v2",
                       license: "CDDL 1.1 / GPL 2.0 + Classpath", licenseUrl: "https://oss.oracle.com/licenses/CDDL+GPL-1.1"),
    new LibraryLicense(libraryName: "Jaxen", license: "modified Apache", url: "https://github.com/jaxen-xpath/jaxen",
                       licenseUrl: "https://github.com/jaxen-xpath/jaxen/blob/master/LICENSE.txt"),
    new LibraryLicense(name: "Jayway JsonPath", libraryName: "jsonpath",
                       url: "https://github.com/json-path/JsonPath",
                       licenseUrl: "https://github.com/json-path/JsonPath/blob/master/LICENSE").apache(),
    new LibraryLicense(libraryName: "jb-jdi", license: "GPL 2.0 + Classpath", url: "https://github.com/JetBrains/intellij-deps-jdi",
                       licenseUrl: "https://raw.githubusercontent.com/JetBrains/intellij-deps-jdi/master/LICENSE.txt"),
    new LibraryLicense(name: "JCEF", libraryName: "jcef", license: "Permissive",
                       licenseUrl: "https://bitbucket.org/chromiumembedded/java-cef/src/master/LICENSE.txt",
                       url: "https://bitbucket.org/chromiumembedded/java-cef"),
    new LibraryLicense(name: "JCIP Annotations", libraryName: "jcip", license: "Creative Commons Attribution License",
                       url: "https://www.jcip.net", licenseUrl: "https://creativecommons.org/licenses/by/2.5"),
    new LibraryLicense(name: "JCodings", libraryName: "joni", transitiveDependency: true, version: "1.0.55",
                       url: "https://github.com/jruby/jcodings", licenseUrl: "https://github.com/jruby/jcodings/blob/master/pom.xml").mit(),
    new LibraryLicense(name: "JDOM (JetBrains's fork)", libraryName: "JDOM", license: "modified Apache",
                       url: "https://github.com/JetBrains/intellij-deps-jdom",
                       licenseUrl: "https://github.com/JetBrains/intellij-deps-jdom/blob/master/LICENSE.txt"),
    new LibraryLicense(name: "JediTerm", libraryName: "jediterm-pty", license: "LGPL 3",
                       url: "https://github.com/JetBrains/jediterm",
                       licenseUrl: "https://github.com/JetBrains/jediterm/blob/master/LICENSE-LGPLv3.txt"),
    new LibraryLicense(name: "JediTerm Type Ahead", libraryName: "jediterm-typeahead", license: "LGPL 3",
                       url: "https://github.com/JetBrains/jediterm",
                       licenseUrl: "https://github.com/JetBrains/jediterm/blob/master/LICENSE-LGPLv3.txt"),
    new LibraryLicense(name: "JetBrains Annotations", libraryName: "jetbrains-annotations",
                       url: "https://github.com/JetBrains/java-annotations").apache(),
    new LibraryLicense(name: "JetBrains Annotations for Java 5", libraryName: "jetbrains-annotations-java5",
                       url: "https://github.com/JetBrains/java-annotations").apache(),
    new LibraryLicense(name: "JetBrains Runtime", attachedTo: "intellij.platform.ide.impl", version: "11",
                       license: "GNU General Public License, version 2, with the Classpath Exception",
                       url: "https://github.com/JetBrains/JetBrainsRuntime",
                       licenseUrl: "https://github.com/JetBrains/JetBrainsRuntime/blob/master/LICENSE"),
    new LibraryLicense(name: "jetCheck", libraryName: "jetCheck", url: "https://github.com/JetBrains/jetCheck").apache(),
    new LibraryLicense(name: "JGit (develar's fork)", libraryName: "jgit-develar", version: "4.0", license: "Eclipse Distribution License 1.0",
                       licenseUrl: "https://www.eclipse.org/org/documents/edl-v10.php", url: "https://github.com/develar/jgit"),
    new LibraryLicense(name: "JGoodies Common", libraryName: "jgoodies-common",
                       url: "https://www.jgoodies.com/freeware/libraries/looks/").simplifiedBsd(),
    new LibraryLicense(name: "JGoodies Forms", libraryName: "jgoodies-forms",
                       url: "https://www.jgoodies.com/freeware/libraries/forms/").simplifiedBsd(),
    new LibraryLicense(name: "JNA (JetBrains's fork)", libraryName: "jna", license: "LGPL 2.1",
                       url: "https://github.com/JetBrains/intellij-deps-jna",
                       licenseUrl: "https://www.opensource.org/licenses/lgpl-2.1.php"),
    new LibraryLicense(name: "Joni", libraryName: "joni",
                       url: "https://github.com/jruby/joni", licenseUrl: "https://github.com/jruby/joni/blob/master/LICENSE").mit(),
    new LibraryLicense(name: "jps-javac-extension", libraryName: "jps-javac-extension",
                       url: "https://github.com/JetBrains/jps-javac-extension/",
                       licenseUrl: "https://github.com/JetBrains/jps-javac-extension/blob/master/LICENSE.txt").apache(),
    new LibraryLicense(name: "JSch", libraryName: "JSch", url: "https://www.jcraft.com/jsch/",
                       licenseUrl: "https://www.jcraft.com/jsch/LICENSE.txt").newBsd(),
    new LibraryLicense(name: "jsch-agent-proxy", libraryName: "jsch-agent-proxy",
                       url: "https://github.com/ymnk/jsch-agent-proxy",
                       licenseUrl: "https://github.com/ymnk/jsch-agent-proxy/blob/master/LICENSE.txt").newBsd(),
    new LibraryLicense(name: "jsch-agent-proxy-jsch", libraryName: "jsch-agent-proxy-jsch",
                       url: "https://github.com/ymnk/jsch-agent-proxy",
                       licenseUrl: "https://github.com/ymnk/jsch-agent-proxy/blob/master/LICENSE.txt").newBsd(),
    new LibraryLicense(name: "JSON", libraryName: "json.jar", license: "JSON License", licenseUrl: "https://www.json.org/license.html",
                       url: "https://www.json.org/", version: LibraryLicense.CUSTOM_REVISION),
    new LibraryLicense(name: "JSON in Java", libraryName: "org.json:json:20170516", license: "JSON License",
                       licenseUrl: "https://www.json.org/license.html", url: "https://github.com/stleary/JSON-java"),
    new LibraryLicense(name: "JSON Schema (schema.json)", attachedTo: "intellij.json", version: "draft-04",
                       url: "https://json-schema.org/draft-04/schema#").simplifiedBsd(),
    new LibraryLicense(name: "JSON Schema (schema06.json)", attachedTo: "intellij.json", version: "draft-06",
                       url: "https://json-schema.org/draft-06/schema#").simplifiedBsd(),
    new LibraryLicense(name: "JSON Schema (schema07.json)", attachedTo: "intellij.json", version: "draft-07",
                       url: "https://json-schema.org/draft-07/schema#").simplifiedBsd(),
    new LibraryLicense(name: "jsoup", libraryName: "jsoup", url: "https://jsoup.org", licenseUrl: "https://jsoup.org/license").mit(),
    new LibraryLicense(name: "jsr305", libraryName: "jsr305", url: "https://code.google.com/p/jsr-305/",
                       licenseUrl: "https://code.google.com/p/jsr-305/source/browse/trunk/ri/LICENSE").newBsd(),
    new LibraryLicense(name: "JUnit", libraryName: "JUnit3", license: "CPL 1.0", url: "https://junit.org/"),
    new LibraryLicense(name: "JUnit", libraryName: "JUnit4", url: "https://junit.org/").eplV1(),
    new LibraryLicense(name: "JUnit5", libraryName: "JUnit5", url: "https://junit.org/junit5/").eplV2(),
    new LibraryLicense(name: "JUnit5Jupiter", libraryName: "JUnit5Jupiter", url: "https://junit.org/junit5/").eplV2(),
    new LibraryLicense(name: "JUnit5Launcher", libraryName: "JUnit5Launcher", url: "https://junit.org/junit5/").eplV2(),
    new LibraryLicense(name: "JUnit5Vintage", libraryName: "JUnit5Vintage", url: "https://junit.org/junit5/").eplV2(),
    new LibraryLicense(name: "Juniversalchardet", libraryName: "juniversalchardet",
                       url: "https://code.google.com/archive/p/juniversalchardet",
                       license: "MPL 1.1", licenseUrl: "https://www.mozilla.org/MPL/MPL-1.1.html"),
    new LibraryLicense(name: "jzlib", libraryName: "jzlib", url: "https://www.jcraft.com/jzlib/",
                       licenseUrl: "https://www.jcraft.com/jzlib/LICENSE.txt").newBsd(),
    new LibraryLicense(name: "Kotlin Coroutines for Guava", libraryName: "kotlinx-coroutines-guava",
                       url: "https://github.com/Kotlin/kotlinx.coroutines").apache(),
    new LibraryLicense(name: "Kotlin Coroutines for JDK 8", libraryName: "kotlinx-coroutines-jdk8",
                       url: "https://github.com/Kotlin/kotlinx.coroutines").apache(),
    new LibraryLicense(name: "Kotlin Coroutines for Slf4j", libraryName: "kotlinx-coroutines-slf4j",
                       url: "https://github.com/Kotlin/kotlinx.coroutines").apache(),
    new LibraryLicense(name: "Kotlin Gradle Plugin Model", libraryName: "kotlin-gradle-plugin-model").apache(),
    new LibraryLicense(name: "Kotlin multiplatform / multi-format serialization",
                       libraryName: "kotlinx-serialization-core",
                       url: "https://github.com/Kotlin/kotlinx.serialization").apache(),
    new LibraryLicense(name: "Kotlin multiplatform / multi-format serialization",
                       libraryName: "kotlinx-serialization-json",
                       url: "https://github.com/Kotlin/kotlinx.serialization").apache(),
    new LibraryLicense(name: "Kotlin multiplatform / multi-format serialization",
                       libraryName: "kotlinx-serialization-protobuf",
                       url: "https://github.com/Kotlin/kotlinx.serialization").apache(),
    new LibraryLicense(name: "Kotlin reflection library",
                       libraryName: "kotlin-reflect",
                       url: "https://github.com/JetBrains/kotlin").apache(),
    new LibraryLicense(name: "Kotlin Standard Library for JDK 8",
                       libraryName: "kotlin-stdlib-jdk8",
                       url: "https://github.com/JetBrains/kotlin").apache(),
    new LibraryLicense(name: "kotlinx.html", libraryName: "org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.3",
                       licenseUrl: "https://github.com/Kotlin/kotlinx.html/blob/master/LICENSE",
                       url: "https://github.com/Kotlin/kotlinx.html").apache(),
    new LibraryLicense(name: "Kryo", libraryName: "Kryo",
                       url: "https://github.com/EsotericSoftware/kryo",
                       licenseUrl: "https://github.com/EsotericSoftware/kryo/blob/master/LICENSE.md").newBsd(),
    new LibraryLicense(name: "kXML2", libraryName: "kxml2", license: "BSD", url: "https://sourceforge.net/projects/kxml/"),
    new LibraryLicense(name: "Language Tool", libraryName: "org.languagetool:languagetool-core:5.5",
                       license: "LGPL 2.1",
                       licenseUrl: "https://www.gnu.org/licenses/lgpl-2.1.txt"),
    new LibraryLicense(name: "Language Tool (English)", libraryName: "org.languagetool:language-en:5.5",
                       license: "LGPL 2.1",
                       licenseUrl: "https://www.gnu.org/licenses/lgpl-2.1.txt"),
    new LibraryLicense(name: "Log4j", libraryName: "Log4J",
                       url: "https://logging.apache.org/log4j/1.2/index.html").apache(),
    new LibraryLicense(name: "lz4-java", libraryName: "lz4-java",
                       url: "https://github.com/lz4/lz4-java", licenseUrl: "https://github.com/lz4/lz4-java/blob/master/LICENSE.txt").apache(),
    new LibraryLicense(name: "markdown4j", libraryName: "markdown4j", url: "https://code.google.com/p/markdown4j/").newBsd(),
    new LibraryLicense(name: "MarkdownJ", libraryName: "markdownj", version: "0.4.2", url: "https://github.com/myabc/markdownj").newBsd(),
    new LibraryLicense(name: "MathJax", attachedTo: "intellij.python", version: "2.6.1",
                       url: "git://github.com/mathjax/MathJax", licenseUrl: "https://github.com/mathjax/MathJax/blob/master/LICENSE").apache(),
    new LibraryLicense(libraryName: "Maven", version: "2.2.1", url: "https://maven.apache.org/").apache(),
    new LibraryLicense(name: "maven-2.2.1-uber", version: "2.2.1", libraryName: "maven-2.2.1-uber.jar",
                       url: "https://maven.apache.org/").apache(),
    new LibraryLicense(name: "Maven Model", libraryName: "maven-model", url: "https://maven.apache.org/").apache(),
    new LibraryLicense(name: "Maven Resolver Provider",
                       url: "https://maven.apache.org/ref/3.6.1/maven-resolver-provider/", libraryName: "maven-resolver-provider",
                       additionalLibraryNames: ["org.apache.maven.resolver:maven-resolver-connector-basic",
                                                "org.apache.maven.resolver:maven-resolver-transport-http",
                                                "org.apache.maven.resolver:maven-resolver-transport-file"]).apache(),
    new LibraryLicense(name: "Maven3", attachedTo: "intellij.maven.server.m3.common",
                       additionalLibraryNames: ["org.apache.maven.shared:maven-dependency-tree:1.2", "org.apache.maven.archetype:archetype-common:2.2"],
                       version: "3.6.1", url: "https://maven.apache.org/").apache(),
    new LibraryLicense(name: "Memory File System", libraryName: "memoryfilesystem",
                       url: "https://github.com/marschall/memoryfilesystem").mit(),
    new LibraryLicense(name: "mercurial_prompthooks", attachedTo: "intellij.vcs.hg", version: LibraryLicense.CUSTOM_REVISION,
                       license: "GPLv2 (used as hg extension called from hg executable)",
                       url: "https://github.com/willemv/mercurial_prompthooks",
                       licenseUrl: "https://github.com/willemv/mercurial_prompthooks/blob/master/LICENSE.txt"),
    new LibraryLicense(name: "Microba", libraryName: "microba", version: "0.4.2", url: "https://microba.sourceforge.net/",
                       licenseUrl: "https://microba.sourceforge.net/license.txt").newBsd(),
    new LibraryLicense(name: "MigLayout", libraryName: "miglayout-swing",
                       url: "https://www.miglayout.com/", licenseUrl: "https://www.miglayout.com/mavensite/license.html").newBsd(),
    new LibraryLicense(name: "minlog", libraryName: "Kryo", transitiveDependency: true, version: "1.2",
                       url: "https://github.com/EsotericSoftware/minlog").newBsd(),
    new LibraryLicense(name: "morfologik-fsa", libraryName: "org.carrot2:morfologik-fsa:2.1.7",
                       url: "https://github.com/morfologik/morfologik-stemming").simplifiedBsd(),
    new LibraryLicense(name: "morfologik-fsa-builders", libraryName: "org.carrot2:morfologik-fsa-builders:2.1.7",
                       url: "https://github.com/morfologik/morfologik-stemming").simplifiedBsd(),
    new LibraryLicense(name: "morfologik-speller", libraryName: "org.carrot2:morfologik-speller:2.1.7",
                       url: "https://github.com/morfologik/morfologik-stemming").simplifiedBsd(),
    new LibraryLicense(name: "morfologik-stemming", libraryName: "org.carrot2:morfologik-stemming:2.1.7",
                       url: "https://github.com/morfologik/morfologik-stemming").simplifiedBsd(),
    new LibraryLicense(name: "Moshi", libraryName: "moshi", url: "https://github.com/square/moshi").apache(),
    new LibraryLicense(libraryName: "NanoXML", license: "zlib/libpng",
                       url: "https://mvnrepository.com/artifact/be.cyberelf.nanoxml/nanoxml/2.2.3",
                       licenseUrl: "https://www.opensource.org/licenses/zlib-license.html"),
    new LibraryLicense(name: "nekohtml", libraryName: "nekohtml",
                       url: "https://nekohtml.sourceforge.net/").apache(),
    new LibraryLicense(name: "net.loomchild.segment", libraryName: "net.loomchild:segment:2.0.1",
                       url: "https://github.com/loomchild/segment",
                       licenseUrl: "https://github.com/loomchild/segment/blob/master/LICENSE.txt").mit(),
    new LibraryLicense(name: "netty-buffer", libraryName: "netty-buffer", url: "https://netty.io").apache(),
    new LibraryLicense(name: "netty-codec-http", libraryName: "netty-codec-http", url: "https://netty.io").apache(),
    new LibraryLicense(name: "netty-handler-proxy", libraryName: "netty-handler-proxy", url: "https://netty.io").apache(),
    new LibraryLicense(libraryName: "ngram-slp", url: "https://github.com/SLP-team/SLP-Core",
                       licenseUrl: "https://github.com/SLP-team/SLP-Core/blob/master/LICENSE").mit(),
    new LibraryLicense(name: "Objenesis", libraryName: "Objenesis", url: "https://objenesis.org/").apache(),
    new LibraryLicense(name: "OkHttp", libraryName: "okhttp", url: "https://square.github.io/okhttp/").apache(),
    new LibraryLicense(name: "Okio", libraryName: "okio", url: "https://github.com/square/okio").apache(),
    new LibraryLicense(libraryName: "opentelemetry", url: "https://opentelemetry.io/").apache(),
    new LibraryLicense(name: "OWASP Java HTML Sanitizer", libraryName: "owasp-java-html-sanitizer",
                       url: "https://github.com/OWASP/java-html-sanitizer/",
                       licenseUrl: "https://github.com/OWASP/java-html-sanitizer/blob/master/COPYING").apache(),
    new LibraryLicense(name: "Package Search API Models", libraryName: "package-search-api-models",
                       url: "https://package-search.jetbrains.com", version: "2.2.3").apache(),
    new LibraryLicense(name: "Package Search Version Utils", libraryName: "package-search-version-utils",
                       url: "https://package-search.jetbrains.com", version: "1.0.0").apache(),
    new LibraryLicense(name: "PEPK", libraryName: "pepk", url: "https://source.android.com/",
                       version: LibraryLicense.CUSTOM_REVISION).apache(),
    new LibraryLicense(name: "Perfetto protos", libraryName: "perfetto-proto").apache(),
    new LibraryLicense(name: "plexus-archiver", libraryName: "plexus-archiver",
                       url: "https://github.com/codehaus-plexus/plexus-archiver").apache(),
    new LibraryLicense(name: "plexus-classworlds", attachedTo: "intellij.maven.server.m30.impl", version: "2.4",
                       url: "https://github.com/codehaus-plexus/plexus-classworlds").apache(),
    new LibraryLicense(name: "Plexus Utils", libraryName: "plexus-utils",
                       url: "https://plexus.codehaus.org/plexus-utils").apache(),
    new LibraryLicense(name: "pockets", attachedTo: "intellij.python.helpers", version: "0.3.2",
                       url: "https://pockets.readthedocs.org/").newBsd(),
    new LibraryLicense(name: "protobuf-java-util", libraryName: "google.protobuf.java.util",
                       url: "https://developers.google.com/protocol-buffers").newBsd(),
    new LibraryLicense(name: "Protocol Buffers", libraryName: "protobuf", url: "https://developers.google.com/protocol-buffers",
                       licenseUrl: "https://github.com/google/protobuf/blob/master/LICENSE").newBsd(),
    new LibraryLicense(name: "Protocol Buffers", libraryName: "protobuf-java6", url: "https://developers.google.com/protocol-buffers",
                       licenseUrl: "https://github.com/protocolbuffers/protobuf/blob/v3.5.1/LICENSE").newBsd(),
    new LibraryLicense(name: "Proxy Vole (JetBrains's fork)", libraryName: "proxy-vole",
                       url: "https://github.com/JetBrains/intellij-deps-proxy-vole",
                       licenseUrl: "https://github.com/MarkusBernhardt/proxy-vole/blob/master/LICENSE.md").apache(),
    new LibraryLicense(name: "pty4j", libraryName: "pty4j",
                       url: "https://github.com/JetBrains/pty4j").eplV1(),
    new LibraryLicense(name: "PureJavaComm", libraryName: "pty4j", transitiveDependency: true, version: "0.0.11.1",
                       url: "https://github.com/nyholku/purejavacomm",
                       licenseUrl: "https://github.com/nyholku/purejavacomm/blob/master/LICENSE.txt").newBsd(),
    new LibraryLicense(name: "pycodestyle.py", attachedTo: "intellij.python.helpers", version: "2.3.1",
                       url: "https://pycodestyle.readthedocs.io/").mit(),
    new LibraryLicense(name: "qdox-java-parser", libraryName: "qdox-java-parser",
                       url: "https://github.com/paul-hammant/qdox").apache(),
    new LibraryLicense(name: "R8 DEX shrinker", libraryName: "jb-r8").newBsd(),
    new LibraryLicense(name: "Relax NG Object Model", libraryName: "rngom-20051226-patched.jar",
                       url: "https://github.com/kohsuke/rngom", version: LibraryLicense.CUSTOM_REVISION).mit(),
    new LibraryLicense(name: "Rhino JavaScript Engine", libraryName: "rhino", license: "MPL 1.1",
                       url: "https://www.mozilla.org/rhino/", licenseUrl: "https://www.mozilla.org/MPL/MPL-1.1.html"),
    new LibraryLicense(libraryName: "RMI Stubs",
                       url: "https://confluence.jetbrains.com/display/CONTEST/XSLT-Debugger",
                       version: LibraryLicense.CUSTOM_REVISION).apache(),
    new LibraryLicense(name: "Roboto", attachedTo: "intellij.platform.resources", version: "1.100141",
                       url: "https://github.com/google/roboto/blob/master/LICENSE").apache(),
    new LibraryLicense(libraryName: "sa-jdwp", license: "GPL 2.0 + Classpath", url: "https://github.com/JetBrains/jdk-sa-jdwp",
                       licenseUrl: "https://raw.githubusercontent.com/JetBrains/jdk-sa-jdwp/master/LICENSE.txt"),
    new LibraryLicense(libraryName: "Saxon-6.5.5", version: "6.5.5", license: "Mozilla Public License",
                       url: "https://saxon.sourceforge.net/",
                       licenseUrl: "https://www.mozilla.org/MPL/"),
    new LibraryLicense(libraryName: "Saxon-9HE", version: "9", license: "Mozilla Public License", url: "https://saxon.sourceforge.net/",
                       licenseUrl: "https://www.mozilla.org/MPL/"),
    new LibraryLicense(name: "six.py", attachedTo: "intellij.python.helpers", version: "1.9.0",
                       url: "https://pythonhosted.org/six/").mit(),
    new LibraryLicense(libraryName: "Slf4j", url: "https://slf4j.org/", licenseUrl: "https://slf4j.org/license.html").mit(),
    new LibraryLicense(name: "SnakeYAML", libraryName: "snakeyaml",
                       url: "https://bitbucket.org/asomov/snakeyaml").apache(),
    new LibraryLicense(name: "snakeyaml-engine", libraryName: "snakeyaml-engine",
                       url: "https://bitbucket.org/asomov/snakeyaml-engine/src").apache(),
    new LibraryLicense(name: "Sonatype Nexus: Indexer", attachedTo: "intellij.maven.server.m3.common", version: "3.0.4",
                       additionalLibraryNames: ["org.sonatype.nexus:nexus-indexer:3.0.4", "org.sonatype.nexus:nexus-indexer-artifact:1.0.1"],
                       url: "https://nexus.sonatype.org/").eplV1(),
    new LibraryLicense(name: "Sonatype Nexus: Indexer", libraryName: "nexus-indexer-1.2.3.jar", version: "1.2.3",
                       url: "https://nexus.sonatype.org/").eplV1(),
    new LibraryLicense(name: "SourceCodePro", attachedTo: "intellij.platform.resources", version: "2.010", license: "OFL",
                       url: "https://github.com/adobe-fonts/source-code-pro",
                       licenseUrl: "https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.md"),
    new LibraryLicense(name: "Spantable", libraryName: "spantable.jar", version: "patched", license: "LGPL 2.1",
                       licenseUrl: "https://www.gnu.org/licenses/lgpl.html",
                       url: "https://android.googlesource.com/platform/prebuilts/tools/+/master/common/spantable/"),
    new LibraryLicense(name: "sphinxcontrib-napoleon", attachedTo: "intellij.python.helpers", version: "0.3.11",
                       url: "https://sphinxcontrib-napoleon.readthedocs.org/").simplifiedBsd(),
    new LibraryLicense(name: "SQLite Inspector Proto", libraryName: "sqlite-inspector-proto").apache(),
    new LibraryLicense(name: "ssh-nio-fs", libraryName: "ssh-nio-fs",
                       url: "https://github.com/JetBrains/intellij-deps-ssh-nio-fs",
                       licenseUrl: "https://github.com/JetBrains/intellij-deps-ssh-nio-fs/blob/master/LICENSE").mit(),
    new LibraryLicense(name: "StreamEx", libraryName: "StreamEx",
                       url: "https://github.com/amaembo/streamex").apache(),
    new LibraryLicense(name: "Studio Protobuf", libraryName: "studio-proto", license: "protobuf",
                       licenseUrl: "https://github.com/protocolbuffers/protobuf/blob/master/LICENSE"),
    new LibraryLicense(name: "swingx", libraryName: "swingx", license: "LGPL 2.1",
                       url: "https://java.net/downloads/swingx/", licenseUrl: "https://www.opensource.org/licenses/lgpl-2.1.php"),
    // for tensorflow-lite-metadata module library in android.sdktools.mlkit-common
    new LibraryLicense(name: "TensorFlow Lite Metadata Library", libraryName: "tensorflow-lite-metadata",
                       url: "https://tensorflow.org/lite").apache(),
    new LibraryLicense(libraryName: "TestNG", url: "https://testng.org/doc/",
                       licenseUrl: "https://github.com/cbeust/testng/blob/master/LICENSE.txt").apache(),
    new LibraryLicense(name: "Thrift", libraryName: "libthrift", url: "https://thrift.apache.org/").apache(),
    // for traceprocessor-proto module library in intellij.android.profilersAndroid
    new LibraryLicense(name: "TraceProcessor Daemon Protos", libraryName: "traceprocessor-proto").apache(),
    new LibraryLicense(name: "Transport Pipeline", libraryName: "transport-proto").apache(),
    new LibraryLicense(name: "Trove4j (JetBrains's fork)", libraryName: "Trove4j", license: "LGPL",
                       url: "https://github.com/JetBrains/intellij-deps-trove4j",
                       licenseUrl: "https://github.com/JetBrains/intellij-deps-trove4j/blob/master/LICENSE.txt"),
    new LibraryLicense(name: "TwelveMonkeys ImageIO", libraryName: "imageio-tiff",
                       url: "https://github.com/haraldk/TwelveMonkeys", licenseUrl: "https://github.com/haraldk/TwelveMonkeys#license").newBsd(),
    new LibraryLicense(name: "unit-api", libraryName: "javax.measure:unit-api:1.0",
                       url: "https://github.com/unitsofmeasurement/unit-api",
                       licenseUrl: "https://github.com/unitsofmeasurement/unit-api/blob/master/LICENSE").newBsd(),
    new LibraryLicense(name: "uom-lib-common", libraryName: "tech.uom.lib:uom-lib-common:1.1",
                       url: "https://github.com/unitsofmeasurement/uom-lib",
                       licenseUrl: "https://github.com/unitsofmeasurement/uom-lib/blob/master/LICENSE").newBsd(),
    new LibraryLicense(libraryName: "Velocity", url: "https://velocity.apache.org/").apache(),
    new LibraryLicense(name: "Visual Studio Code", attachedTo: "intellij.textmate", version: "1.33.1",
                       url: "https://github.com/Microsoft/vscode/",
                       licenseUrl: "https://github.com/Microsoft/vscode-react-native/blob/master/LICENSE.txt").mit(),
    new LibraryLicense(name: "weberknecht", libraryName: "weberknecht-0.1.5.jar", version: "0.1.5",
                       url: "https://github.com/pelotoncycle/weberknecht").apache(),
    new LibraryLicense(libraryName: "winp", url: "https://github.com/kohsuke/winp").mit(),
    // for workmanager-inspector-proto module library in intellij.android.app-inspection.inspectors.workmanager.model
    new LibraryLicense(name: "WorkManager Inspector Proto", libraryName: "workmanager-inspector-proto").apache(),
    new LibraryLicense(name: "Xalan", libraryName: "Xalan-2.7.2",
                       url: "https://xalan.apache.org/xalan-j/", licenseUrl: "https://xalan.apache.org/xalan-j/#license").apache(),
    new LibraryLicense(libraryName: "Xerces", url: "https://xerces.apache.org/xerces2-j/",
                       licenseUrl: "https://xerces.apache.org/xerces2-j/").apache(),
    new LibraryLicense(name: "Xerial SQLite JDBC", libraryName: "sqlite",
                       url: "https://github.com/xerial/sqlite-jdbc").apache(),
    new LibraryLicense(name: "xml-apis-ext", libraryName: "xml-apis-ext",
                       url: "https://xerces.apache.org/xml-commons/components/external").apache(),
    new LibraryLicense(name: "xml-resolver", libraryName: "xml-resolver",
                       url: "https://xml.apache.org/commons/components/resolver/").apache(),
    new LibraryLicense(name: "XMLBeans", libraryName: "XmlBeans",
                       url: "https://xmlbeans.apache.org/",
                       licenseUrl: "https://svn.jetbrains.org/idea/Trunk/bundled/WebServices/resources/lib/xmlbeans-2.3.0/xmlbeans.LICENSE").apache(),
    new LibraryLicense(name: "XmlRPC", libraryName: "XmlRPC",
                       url: "https://ws.apache.org/xmlrpc/xmlrpc2/", licenseUrl: "https://ws.apache.org/xmlrpc/xmlrpc2/license.html").apache(),
    new LibraryLicense(name: "XStream", libraryName: "XStream",
                       url: "https://x-stream.github.io/", licenseUrl: "https://x-stream.github.io/license.html").newBsd(),
    new LibraryLicense(name: "XZ for Java", libraryName: "xz", license: "Public Domain",
                       url: "https://tukaani.org/xz/java.html"),
    new LibraryLicense(name: "zip-signer", libraryName: "zip-signer",
                       url: "https://github.com/JetBrains/marketplace-zip-signer").apache(),
    new LibraryLicense(name: "Zstd-JNI", libraryName: "com.github.luben:zstd",
                       url: "https://raw.githubusercontent.com/luben/zstd-jni/master/LICENSE").simplifiedBsd(),

    jetbrainsLibrary("change-reminder-prediction-model"),
    jetbrainsLibrary("completion-log-events"),
    jetbrainsLibrary("completion-ranking-cpp-exp"),
    jetbrainsLibrary("completion-ranking-dart-exp"),
    jetbrainsLibrary("completion-ranking-go-exp"),
    jetbrainsLibrary("completion-ranking-java"),
    jetbrainsLibrary("completion-ranking-java-exp"),
    jetbrainsLibrary("completion-ranking-java-exp-no-pos"),
    jetbrainsLibrary("completion-ranking-js-exp"),
    jetbrainsLibrary("completion-ranking-kotlin"),
    jetbrainsLibrary("completion-ranking-kotlin-exp"),
    jetbrainsLibrary("completion-ranking-php-exp"),
    jetbrainsLibrary("completion-ranking-python"),
    jetbrainsLibrary("completion-ranking-python-exp"),
    jetbrainsLibrary("completion-ranking-ruby-exp"),
    jetbrainsLibrary("completion-ranking-rust-exp"),
    jetbrainsLibrary("completion-ranking-scala-exp"),
    jetbrainsLibrary("completion-ranking-swift-exp"),
    jetbrainsLibrary("completion-ranking-typescript-exp"),
    jetbrainsLibrary("debugger-memory-agent"),
    jetbrainsLibrary("file-prediction-model"),
    jetbrainsLibrary("find-action-model"),
    jetbrainsLibrary("find-action-model-experimental"),
    jetbrainsLibrary("find-file-model"),
    jetbrainsLibrary("git-learning-project"),
    jetbrainsLibrary("intellij-coverage"),
    jetbrainsLibrary("intellij-markdown"),
    jetbrainsLibrary("intellij-test-discovery"),
    jetbrainsLibrary("io.ktor.network.jvm"),
    jetbrainsLibrary("jps-build-script-dependencies-bootstrap"),
    jetbrainsLibrary("jshell-frontend"),
    jetbrainsLibrary("kotlin-script-runtime"),
    jetbrainsLibrary("kotlin-test"),
    jetbrainsLibrary("kotlinc.allopen-compiler-plugin"),
    jetbrainsLibrary("kotlinc.android-extensions-compiler-plugin"),
    jetbrainsLibrary("kotlinc.incremental-compilation-impl-tests"),
    jetbrainsLibrary("kotlinc.kotlin-build-common-tests"),
    jetbrainsLibrary("kotlinc.kotlin-compiler-common"),
    jetbrainsLibrary("kotlinc.kotlin-compiler-fe10"),
    jetbrainsLibrary("kotlinc.kotlin-compiler-ir"),
    jetbrainsLibrary("kotlinc.kotlin-compiler-fir"),
    jetbrainsLibrary("kotlinc.kotlin-compiler-cli"),
    jetbrainsLibrary("kotlinc.kotlin-dist"),
    jetbrainsLibrary("kotlinc.kotlin-gradle-statistics"),
    jetbrainsLibrary("kotlinc.kotlin-jps-common"),
    jetbrainsLibrary("kotlinc.kotlin-jps-plugin-classpath"),
    jetbrainsLibrary("kotlinc.kotlin-reflect"),
    jetbrainsLibrary("kotlinc.kotlin-script-runtime"),
    jetbrainsLibrary("kotlinc.kotlin-scripting-compiler"),
    jetbrainsLibrary("kotlinc.kotlin-stdlib"),
    jetbrainsLibrary("kotlinc.kotlinx-serialization-compiler-plugin"),
    jetbrainsLibrary("kotlinc.noarg-compiler-plugin"),
    jetbrainsLibrary("kotlinc.parcelize-compiler-plugin"),
    jetbrainsLibrary("kotlinc.sam-with-receiver-compiler-plugin"),
    jetbrainsLibrary("kotlinx-collections-immutable-jvm"),
    jetbrainsLibrary("ml-completion-prev-exprs-models"),
    jetbrainsLibrary("org.jetbrains.kotlin:backend.native:mobile"),
    jetbrainsLibrary("rd-core"),
    jetbrainsLibrary("rd-framework"),
    jetbrainsLibrary("rd-swing"),
    jetbrainsLibrary("rd-text"),
    jetbrainsLibrary("tcServiceMessages"),
    jetbrainsLibrary("tips-idea-ce"),
    jetbrainsLibrary("tips-pycharm-community"),
  ] as List<LibraryLicense>
}