File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ For these examples, these will perform the analysis on the first 1000 artifacts.
15
15
2 . Run the executable with the given cli
16
16
17
17
### Counting all classFiles from jar artifacts:
18
- ```
18
+ ``` java
19
19
public class ExampleImplementation () extends MavenCentralAnalysis {
20
20
private long numberOfClassfiles;
21
21
@@ -40,7 +40,7 @@ public class ExampleImplementation() extends MavenCentralAnalysis {
40
40
``` java -jar executableName --jar -st 0:1000 ```
41
41
42
42
### Find all Unique Licenses from pom artifacts
43
- ```
43
+ ``` java
44
44
public class ExampleImplementation () extends MavenCentralAnalysis {
45
45
private Set<License > uniqueLicenses;
46
46
@@ -71,7 +71,7 @@ public class ExampleImplementation() extends MavenCentralAnalysis {
71
71
``` java -jar executableName --pom false -st 0:1000 ```
72
72
73
73
### Collect all artifacts that have javadocs
74
- ```
74
+ ``` java
75
75
public class ExampleImplementation () extends MavenCentralAnalysis {
76
76
private Set<Artifact > hasJavadocs;
77
77
You can’t perform that action at this time.
0 commit comments