File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
java-shared-dependencies/dependency-analyzer/src/main/java/com/google/cloud/model Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 11package com .google .cloud .model ;
22
33import static com .google .cloud .model .LicenseCategory .NOTICE ;
4+ import static com .google .cloud .model .LicenseCategory .PERMISSIVE ;
45import static com .google .cloud .model .LicenseCategory .RESTRICTED ;
56
67import com .google .common .collect .ImmutableSet ;
1617public enum License {
1718 APACHE_2_0 ("Apache-2.0" , Set .of (NOTICE )),
1819 BCL ("BCL" , Set .of (RESTRICTED , NOTICE )),
20+ BSD_2_CLAUSE ("BSD-2-Clause" , Set .of (NOTICE )),
1921 BSD_3_CLAUSE ("BSD-3-Clause" , Set .of (NOTICE )),
2022 GL2PS ("GL2PS" , Set .of (RESTRICTED , NOTICE )),
23+
24+ GPL_2_0_WITH_CLASSPATH_EXCEPTION ("GPL-2.0-with-classpath-exception" , Set .of (PERMISSIVE )),
2125 MIT ("MIT" , Set .of (NOTICE )),
22- NOT_RECOGNIZED ("Not-Recognized" , Set .of ());
26+ NOT_RECOGNIZED ("Not-Recognized" , Set .of ()),
27+
28+ UPL_1_0 ("UPL-1.0" , Set .of (NOTICE ));
2329
2430 private final static Logger LOGGER = Logger .getLogger (License .class .getName ());
2531
You can’t perform that action at this time.
0 commit comments