Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopacheco committed Jul 19, 2016
1 parent c55a512 commit fc33d3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static void main(String[] args) throws Exception {
javaTask.setFork(true);
javaTask.setFailonerror(true);
javaTask.setClassname(MyHelloWorldClass.class.getName());
Path path = new Path(project, new File( new File(new File(".").getCanonicalPath() + "/build") + "/classes").getAbsolutePath());
Path path = new Path(project, new File( new File(new File(".").getCanonicalPath() + "/build") + "/classes/main/").getAbsolutePath());
javaTask.setClasspath(path);
javaTask.init();
int ret = javaTask.executeJava();
Expand Down

0 comments on commit fc33d3b

Please sign in to comment.