-
Notifications
You must be signed in to change notification settings - Fork 46
/
techstack.yml
2737 lines (2737 loc) · 111 KB
/
techstack.yml
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
repo_name: Hack23/cia
report_id: 456b6812aeb16e672b4e2e27295b7be4
version: 0.1
repo_type: Public
timestamp: '2024-01-11T12:24:04+00:00'
requested_by: pethers
provider: github
branch: master
detected_tools_count: 219
tools:
- name: CSS 3
description: The latest evolution of the Cascading Style Sheets language
website_url: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS3
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/6727/css.png
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: Java
description: A concurrent, class-based, object-oriented, language specifically designed
to have as few implementation dependencies as possible
website_url: https://www.java.com
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/995/K85ZWV2F.png
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: JavaScript
description: Lightweight, interpreted, object-oriented language with first-class
functions
website_url: https://developer.mozilla.org/en-US/docs/Web/JavaScript
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1209/javascript.jpeg
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: Python
description: A clear and powerful object-oriented programming language, comparable
to Perl, Ruby, Scheme, or Java.
website_url: https://www.python.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/993/pUBY5pVj.png
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: SQL
description: It is a domain-specific language used in programming
website_url: https://en.wikipedia.org/wiki/SQL
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/2271/default_068d33483bba6b81ee13fbd4dc7aab9780896a54.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/src/main/resources/clean-documentstatus.sql
detection_source: service.data.impl/src/main/resources/clean-documentstatus.sql
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2018-11-08 20:54:45.000000000 Z
- name: Project Reactor
description: Library for building non-blocking applications on JVM
website_url: https://projectreactor.io/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Java Tools
image_url: https://img.stackshare.io/service/5807/default_cbd8ab670309059d7e315252d307d409aa40d793.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: dependabot[bot]
last_updated_on: 2023-12-07 08:06:25.000000000 Z
- name: Protobuf
description: Google's data interchange format
website_url: https://developers.google.com/protocol-buffers/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Serialization Frameworks
image_url: https://img.stackshare.io/service/4393/ma2jqJKH_400x400.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.impl/pom.xml
detection_source: service.impl/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-07-31 21:40:41.000000000 Z
- name: Vaadin
description: Components and tools for building web apps in Java
website_url: http://vaadin.com
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/2971/UuHV6j99_400x400.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: guava
description: Google Core Libraries for Java 6+
website_url: https://github.com/google/guava
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Java Tools
image_url: https://img.stackshare.io/service/2970/wBjKn0ol.png
detection_source_url: https://github.com/Hack23/cia/blob/master/jms-broker/pom.xml
detection_source: jms-broker/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-07-31 12:01:57.000000000 Z
- name: Ehcache
description: Java's Most Widely-Used Cache
website_url: http://ehcache.org/
version: 3.10.8
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Cache
image_url: https://img.stackshare.io/service/3093/EhcacheTwitterIcon.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-10-13 19:55:17.000000000 Z
- name: H2 Database
description: A relational database management system written in Java
website_url: http://www.h2database.com/
open_source: false
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/3105/h2-logo_square_400x400.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: Hibernate
description: Idiomatic persistence for Java and relational databases.
website_url: http://hibernate.org/
open_source: false
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/1756/1uNl_IZX.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pethers
last_updated_on: 2022-10-01 15:27:40.000000000 Z
- name: Liquibase
description: Easily track, version & deploy database changes
website_url: https://www.liquibase.com
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Database Tools
image_url: https://img.stackshare.io/service/1398/y1As8_s5_400x400.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2022-12-26 16:19:09.000000000 Z
- name: PostgreSQL
description: A powerful, open source object-relational database system
website_url: http://www.postgresql.org/
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1028/ASOhU5xJ.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether
last_updated_on: 2015-08-01 13:49:48.000000000 Z
- name: Spring Data
description: Provides a consistent approach to data access – relational, non-relational,
map-reduce, and beyond
website_url: https://spring.io/projects/spring-data
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Database Tools
image_url: https://img.stackshare.io/service/7624/IG6D4Ro2_400x400.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: Chai
description: A BDD / TDD assertion library
website_url: http://chaijs.com/
version: 4.3.4
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/1725/chai.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/package-lock.json
detection_source: web-widgets/package.json
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2018-10-30 18:07:53.000000000 Z
- name: Docker
description: Enterprise Container Platform for High-Velocity Innovation.
website_url: https://www.docker.com/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Platforms & Containers
image_url: https://img.stackshare.io/service/586/n4u37v9t_400x400.png
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: Eclipse
description: IDE for Java EE Developers
website_url: https://www.eclipse.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Integrated Development Environment
image_url: https://img.stackshare.io/service/1446/8cyY6D_m.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: Git
description: Fast, scalable, distributed revision control system
website_url: http://git-scm.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Version Control System
image_url: https://img.stackshare.io/service/1046/git.png
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: GitHub Actions
description: Automate your workflow from idea to production
website_url: https://github.com/features/actions
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/11563/actions.png
detection_source_url: https://github.com/Hack23/cia/blob/master/.github/workflows/codeql-analysis.yml
detection_source: ".github/workflows/codeql-analysis.yml"
last_updated_by: dependabot[bot]
last_updated_on: 2024-01-11 09:34:42.000000000 Z
- name: JBoss
description: An open source Java EE-based application server
website_url: https://developers.redhat.com/products/eap
open_source: false
hosted_saas: false
category: Application Hosting
sub_category: Web Servers
image_url: https://img.stackshare.io/service/2188/unnamed.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pether
last_updated_on: 2015-08-01 13:49:48.000000000 Z
- name: JUnit
description: A programmer-oriented testing framework for Java
website_url: http://junit.org/
license: EPL-1.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Testing Frameworks
image_url: https://img.stackshare.io/service/2020/874086.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pether
last_updated_on: 2015-08-01 13:49:48.000000000 Z
- name: Jasmine
description: DOM-less simple JavaScript testing framework
website_url: http://jasmine.github.io/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/831/7c0b595409af531b9cdeb07f8c513e8b.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/package.json
detection_source: web-widgets/package.json
last_updated_by: dependabot[bot]
last_updated_on: 2023-08-25 10:05:10.000000000 Z
- name: Karma
description: Spectacular Test Runner for JavaScript
website_url: http://karma-runner.github.io/
version: 6.4.2
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Browser Testing
image_url: https://img.stackshare.io/service/1420/TidYGd6a.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/package-lock.json
detection_source: web-widgets/package.json
last_updated_by: dependabot[bot]
last_updated_on: 2023-06-23 10:12:13.000000000 Z
- name: Log4j
description: A Java-based logging utility
website_url: https://logging.apache.org/log4j/2.x/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Monitoring
sub_category: Logging Tools
image_url: https://img.stackshare.io/service/2804/Coralogix-log4j-integration.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: Logback
description: A logging framework for Java applications
website_url: https://logback.qos.ch/
open_source: false
hosted_saas: false
category: Monitoring
sub_category: Log Management
image_url: https://img.stackshare.io/service/2923/05518ecaa42841e834421e9d6987b04f_400x400.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/src/main/resources/logback.xml
detection_source: citizen-intelligence-agency/src/main/resources/logback.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2018-01-13 19:10:00.000000000 Z
- name: Mocha
description: Simple, flexible, fun javascript test framework for node.js & the
browser
website_url: http://mochajs.org/
version: 10.2.0
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/832/mocha.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/package-lock.json
detection_source: web-widgets/package.json
last_updated_by: renovate[bot]
last_updated_on: 2022-12-11 15:39:03.000000000 Z
- name: Mockito
description: Tasty mocking framework for unit tests in Java
website_url: https://site.mockito.org/
version: 5.8.0
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Testing Frameworks
image_url: https://img.stackshare.io/service/2021/4y634TJm_400x400.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/testfoundation/pom.xml
detection_source: testfoundation/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2016-11-08 17:06:15.000000000 Z
- name: SLF4J
description: Simple logging facade for Java
website_url: http://slf4j.org/
open_source: false
hosted_saas: false
category: Monitoring
sub_category: Log Management
image_url: https://img.stackshare.io/service/2805/05518ecaa42841e834421e9d6987b04f_400x400.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether
last_updated_on: 2015-08-01 13:49:48.000000000 Z
- name: SinonJS
description: Standalone test spies, stubs and mocks for JavaScript
website_url: http://sinonjs.org/
version: 11.1.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/3509/logo.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/package-lock.json
detection_source: web-widgets/package.json
last_updated_by: Renovate Bot
last_updated_on: 2018-10-30 18:08:30.000000000 Z
- name: Snyk
description: Automatically find & fix vulnerabilities in your code, containers,
Kubernetes, and Terraform
website_url: https://snyk.io/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Code Review
image_url: https://img.stackshare.io/service/5326/6p1SNAJu.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/.snyk
detection_source: web-widgets/.snyk
last_updated_by: snyk-test
last_updated_on: 2019-07-04 06:29:05.000000000 Z
- name: Travis CI
description: A hosted continuous integration service for open source and private
projects
website_url: http://travis-ci.com/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/460/Lu6cGu0z_400x400.png
detection_source_url: https://github.com/Hack23/cia/blob/master/.travis.yml
detection_source: ".travis.yml"
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2018-06-20 22:01:24.000000000 Z
- name: npm
description: The package manager for JavaScript.
website_url: https://www.npmjs.com/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/1120/lejvzrnlpb308aftn31u.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/package.json
detection_source: web-widgets/package.json
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2018-10-30 18:07:53.000000000 Z
- name: Apache Camel
description: A versatile open source integration framework
website_url: https://camel.apache.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Application Hosting
sub_category: Platform as a Service
image_url: https://img.stackshare.io/service/3276/xWt1RFo6_400x400.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/src/main/resources/application.properties
detection_source: citizen-intelligence-agency/src/main/resources/application.properties
last_updated_by: pether
last_updated_on: 2015-08-01 13:49:48.000000000 Z
- name: Dataform
description: A framework for managing SQL based data operations.
website_url: https://dataform.co/
license: MIT
open_source: true
hosted_saas: false
category: Analytics
sub_category: Business Intelligence
image_url: https://img.stackshare.io/service/11236/Group_22__3_.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: Shell
description: A shell is a text-based terminal, used for manipulating programs and
files. Shell scripts typically manage program execution.
website_url: https://en.wikipedia.org/wiki/Shell_script
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/4631/default_c2062d40130562bdc836c13dbca02d318205a962.png
detection_source_url: https://github.com/Hack23/cia
detection_source: Repo Metadata
- name: Ubuntu
description: The leading OS for PC, tablet, phone and cloud
website_url: http://www.ubuntu.com/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Operating Systems
image_url: https://img.stackshare.io/service/3511/cof_orange_hex.jpg
detection_source_url: https://github.com/Hack23/cia/blob/master/cia-dist-docker/src/main/docker/Dockerfile
detection_source: cia-dist-docker/src/main/docker/Dockerfile
last_updated_by: dependabot[bot]
last_updated_on: 2023-10-13 09:41:26.000000000 Z
- name: antlr:antlr
description: Antlr v3 repository
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2020-05-12 19:26:57.000000000 Z
- name: cglib:cglib
description: Cglib is a powerful
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: ch.qos.logback:logback-classic
description: Logback-classic module
license: EPL-1.0,LGPL-2.1+
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2022-01-12 20:50:53.000000000 Z
- name: com.amazonaws:aws-java-sdk-cloudwatch
description: The AWS Java SDK for Amazon CloudWatch module holds the client classes
that are used for communicating with Amazon CloudWatch Service
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.amazonaws:aws-java-sdk-ec2
description: The AWS Java SDK for Amazon EC2 module holds the client classes that
are used for communicating with Amazon EC2 Service
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.amazonaws:aws-java-sdk-logs
description: The AWS Java SDK for Amazon CloudWatch Logs module holds the client
classes that are used for communicating with Amazon CloudWatch Logs Service
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.carrotsearch:hppc
description: High Performance Primitive Collections
version: 0.9.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2023-07-08 11:07:23.000000000 Z
- name: com.fasterxml.jackson.core:jackson-core
description: Core Jackson processing abstractions
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.impl/pom.xml
detection_source: service.impl/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-07-31 21:40:41.000000000 Z
- name: com.fasterxml.jackson.core:jackson-databind
description: 'General data-binding functionality for Jackson: works on core streaming
API'
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2023-07-08 11:07:23.000000000 Z
- name: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor
description: Support for reading and writing Concise Binary Object Representation
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.fasterxml.jackson.datatype:jackson-datatype-jdk8
description: Add-on module for Jackson
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: com.fasterxml:classmate
description: Library for introspecting types with full generic information including
resolving of field and method types
version: 1.7.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.api/pom.xml
detection_source: service.api/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: com.github.stefanbirkner:system-rules
description: A collection of JUnit rules for testing code which uses java.lang.System
version: 1.19.0
license: CPL-1.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/testfoundation/pom.xml
detection_source: testfoundation/pom.xml
last_updated_by: pethers
last_updated_on: 2022-10-08 17:38:51.000000000 Z
- name: com.google.code.gson:gson
description: Gson JSON library
version: 2.10.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.google.errorprone:error_prone_annotations
description: Sonatype helps open source projects to set up Maven repositories on
https://oss.sonatype.org/
version: 2.24.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/jms-broker/pom.xml
detection_source: jms-broker/pom.xml
last_updated_by: pethers
last_updated_on: 2023-09-06 09:37:15.000000000 Z
- name: com.google.guava:guava
description: Guava is a suite of core and expanded libraries that include utility
classes
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/jms-broker/pom.xml
detection_source: jms-broker/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-08 18:05:19.000000000 Z
- name: com.google.gwt:gwt-dev
license: Unicode-TOU
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.google.gwt:gwt-elemental
version: 2.9.0
license: Unicode-TOU
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.google.gwt:gwt-user
license: Unicode-TOU
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.google.jsinterop:jsinterop-annotations
version: 2.0.0
open_source: false
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-12-26 16:19:09.000000000 Z
- name: com.google.protobuf:protobuf-java
description: Core Protocol Buffers library
version: 3.25.2
license: BSD-1-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.impl/pom.xml
detection_source: service.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2023-05-15 16:25:01.000000000 Z
- name: com.h2database:h2
description: H2 Database Engine
license: MIT-feh
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: com.hack23.cia:testfoundation
description: Testfoundation
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.ibm.icu:icu4j
description: International Component for Unicode for Java
license: Unicode-TOU,ICU
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.openpojo:openpojo
description: This project was born out of a need to validate all POJOs
version: 0.9.1
license: LGPL-3.0-only
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/testfoundation/pom.xml
detection_source: testfoundation/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-07-31 12:56:55.000000000 Z
- name: com.squareup.okio:okio
description: A modern I/O API for Java
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.sun.mail:javax.mail
description: "${project.name}"
version: 1.6.2
license: CNRI-Python-GPL-Compatible
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2023-07-08 11:07:23.000000000 Z
- name: com.sun.xml.bind:jaxb-xjc
description: JAXB
license: CDDL-1.1,CNRI-Python-GPL-Compatible
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2023-07-08 11:07:23.000000000 Z
- name: com.thoughtworks.xstream:xstream
description: XStream is a serialization library from Java objects to XML and back
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.vaadin:vaadin-client
description: Vaadin is a web application framework for Rich Internet Applications
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: com.vaadin:vaadin-client-compiled
description: Vaadin client compiled
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: com.vaadin:vaadin-client-compiler
description: Vaadin client compiler
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: com.vaadin:vaadin-push
description: Vaadin server push support
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: com.vaadin:vaadin-sass-compiler
description: A pure Java implementation of the http://sass-lang.com compiler
version: 0.9.13
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.vaadin:vaadin-server
description: Vaadin server
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/web-widgets/pom.xml
detection_source: web-widgets/pom.xml
last_updated_by: pethers
last_updated_on: 2022-06-23 14:53:16.000000000 Z
- name: com.vaadin:vaadin-themes
description: Vaadin themes
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: com.yahoo.platform.yui:yuicompressor
description: POM was created by Sonatype Nexus
version: 2.4.8
open_source: false
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z
- name: commons-beanutils:commons-beanutils
description: Apache Commons BeanUtils provides an easy-to-use but flexible wrapper
around reflection and introspection
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-12-02 07:02:29.000000000 Z
- name: commons-codec:commons-codec
description: The Apache Commons Codec package contains simple encoder and decoders
for various formats such as Base64 and Hexadecimal
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.data.impl/pom.xml
detection_source: service.data.impl/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-07-31 12:56:55.000000000 Z
- name: commons-collections:commons-collections
description: Types that extend and augment the Java Collections Framework
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pethers
last_updated_on: 2023-11-07 00:15:44.000000000 Z
- name: commons-io:commons-io
description: The Apache Commons IO library contains utility classes
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/parent-model-external-pom/pom.xml
detection_source: parent-model-external-pom/pom.xml
last_updated_by: pether.sorling@gmail.com
last_updated_on: 2021-04-20 19:49:06.000000000 Z
- name: commons-net:commons-net
description: Apache Commons Net library contains a collection of network utilities
and protocol implementations
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/service.impl/pom.xml
detection_source: service.impl/pom.xml
last_updated_by: pethers
last_updated_on: 2022-09-25 20:04:04.000000000 Z
- name: io.github.bonigarcia:webdrivermanager
description: Automatic Selenium WebDriver binaries management in runtime for Java
version: 5.6.3
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: Maven Packages
image_url: https://img.stackshare.io/package/maven/image.png
detection_source_url: https://github.com/Hack23/cia/blob/master/citizen-intelligence-agency/pom.xml
detection_source: citizen-intelligence-agency/pom.xml
last_updated_by: James Pether Sörling
last_updated_on: 2023-09-20 09:52:54.000000000 Z