Skip to content

Commit

Permalink
Optimize dynamically modify Maven Builder instances with javaagent
Browse files Browse the repository at this point in the history
  • Loading branch information
liuhongcheng committed Aug 8, 2019
1 parent fe944a0 commit 62537de
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 6 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private void singleThreadedBuild( MavenSession session, ReactorContext callableC
s.contains("ms.dew:dew-maven-plugin:release")
|| s.contains("dew:release")
|| s.contains("deploy"))) {
return;
continue;
}
lifecycleModuleBuilder.buildProject( session, callableContext, projectBuild.getProject(),
taskSegment );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void build(MavenSession session, ReactorContext reactorContext, ProjectBu
s.contains("ms.dew:dew-maven-plugin:release")
|| s.contains("dew:release")
|| s.contains("deploy"))) {
return;
continue;
}
lifecycleModuleBuilder.buildProject(session, reactorContext, projectBuild.getProject(),
taskSegment);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void build(MavenSession session, ReactorContext reactorContext, ProjectBu
s.contains("ms.dew:dew-maven-plugin:release")
|| s.contains("dew:release")
|| s.contains("deploy"))) {
return;
continue;
}
lifecycleModuleBuilder.buildProject(session, reactorContext, projectBuild.getProject(),
taskSegment);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void build(MavenSession session, ReactorContext reactorContext, ProjectBu
s.contains("ms.dew:dew-maven-plugin:release")
|| s.contains("dew:release")
|| s.contains("deploy"))) {
return;
continue;
}
lifecycleModuleBuilder.buildProject(session, reactorContext, projectBuild.getProject(),
taskSegment);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void build(MavenSession session, ReactorContext reactorContext, ProjectBu
s.contains("ms.dew:dew-maven-plugin:release")
|| s.contains("dew:release")
|| s.contains("deploy"))) {
return;
continue;
}
lifecycleModuleBuilder.buildProject(session, reactorContext, projectBuild.getProject(),
taskSegment);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void build(MavenSession session, ReactorContext reactorContext, ProjectBu
s.contains("ms.dew:dew-maven-plugin:release")
|| s.contains("dew:release")
|| s.contains("deploy"))) {
return;
continue;
}
lifecycleModuleBuilder.buildProject(session, reactorContext, projectBuild.getProject(),
taskSegment);
Expand Down

0 comments on commit 62537de

Please sign in to comment.