File tree 2 files changed +0
-16
lines changed
main/java/org/cyclonedx/maven
test/java/org/cyclonedx/maven
2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change 18
18
*/
19
19
package org .cyclonedx .maven ;
20
20
21
- import java .util .Properties ;
22
21
import org .apache .commons .io .FileUtils ;
23
22
import org .apache .maven .artifact .Artifact ;
24
23
import org .apache .maven .model .Developer ;
48
47
import org .cyclonedx .model .OrganizationalContact ;
49
48
import org .cyclonedx .model .OrganizationalEntity ;
50
49
import org .cyclonedx .model .Property ;
51
- import org .cyclonedx .model .organization .PostalAddress ;
52
50
import org .cyclonedx .parsers .JsonParser ;
53
51
import org .cyclonedx .parsers .Parser ;
54
52
import org .cyclonedx .parsers .XmlParser ;
63
61
import java .util .LinkedHashSet ;
64
62
import java .util .List ;
65
63
import java .util .Map ;
66
- import java .util .Objects ;
67
64
import java .util .Set ;
68
65
import java .util .UUID ;
69
66
Original file line number Diff line number Diff line change @@ -29,19 +29,6 @@ protected String extractComponentsAndDependencies(Set<String> topLevelComponents
29
29
}
30
30
}
31
31
32
- @ Test
33
- @ DisplayName ("Verify that the default configuration does not have manufacturer information " )
34
- void createManufacturer () {
35
- BaseCycloneDxMojoImpl mojo = new BaseCycloneDxMojoImpl ();
36
- OrganizationalEntity manufacturer = mojo .createManufacturer (null , null );
37
- assertNotNull (manufacturer );
38
- assertNull (manufacturer .getAddress ());
39
- assertNull (manufacturer .getContacts ());
40
- assertNull (manufacturer .getName ());
41
- assertNull (manufacturer .getUrls ());
42
- assertNull (manufacturer .getBomRef ());
43
- }
44
-
45
32
@ Test
46
33
@ DisplayName ("" )
47
34
void createListOfAuthors () {
You can’t perform that action at this time.
0 commit comments