Skip to content

Commit 0bee949

Browse files
committed
temp reverting matrix to 0.1.2
1 parent 3697b20 commit 0bee949

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

artemis-cli/src/main/java/com/artemis/cli/MatrixCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class MatrixCommand {
3737
void execute() {
3838
ComponentDependencyMatrix cdm = new ComponentDependencyMatrix(
3939
projectName,
40-
Arrays.asList(classRoot.toURI()),
40+
classRoot,
4141
output);
4242

4343
cdm.process();

artemis-maven/src/main/java/com/artemis/ComponentMatrix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void execute() throws MojoExecutionException {
4747
files.add(artifact.getFile().toURI());
4848

4949
ComponentDependencyMatrix matrix =
50-
new ComponentDependencyMatrix(name, files, new File(saveDirectory, "matrix.html"));
50+
new ComponentDependencyMatrix(name, classDirectory, new File(saveDirectory, "matrix.html"));
5151

5252
matrix.process();
5353
}

0 commit comments

Comments
 (0)