Skip to content

Commit

Permalink
No-maven projects - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
williamniemiec committed Sep 20, 2021
1 parent 442cf5a commit 35e39d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Binary file added dist/8.x/executionflow-8.0.2.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>wniemiec.app.java</groupId>
<artifactId>executionflow</artifactId>
<version>8.0.1</version>
<version>8.0.2</version>
<packaging>jar</packaging>

<name>ExecutionFlow</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,14 @@ public FileProcessingManager compileFile() throws IOException {
}

private Path generateAspectsRootDirectory() {
Path mavenProject = ExecutionFlow.getAppTargetPath().resolve(
Path.of("classes", "wniemiec", "app", "java", "executionflow", "runtime"));

if (Files.exists(mavenProject))
return mavenProject;

return ExecutionFlow.getAppTargetPath().resolve(
Path.of("classes", "wniemiec", "app", "java", "executionflow", "runtime")
Path.of("bin", "wniemiec", "app", "java", "executionflow", "runtime")
);
}

Expand Down

0 comments on commit 35e39d7

Please sign in to comment.