Skip to content

Commit

Permalink
tesla#39 - listen to Maven Project Added event to generate MANIFEST.MF
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier committed Feb 19, 2018
1 parent 08cafef commit 58ddac3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@ public void mavenProjectChanged( MavenProjectChangedEvent event, IProgressMonito
throws CoreException
{
if ( MavenProjectChangedEvent.KIND_CHANGED == event.getKind()
&& MavenProjectChangedEvent.FLAG_DEPENDENCIES == event.getFlags() )
&& MavenProjectChangedEvent.FLAG_DEPENDENCIES == event.getFlags()
|| MavenProjectChangedEvent.KIND_ADDED == event.getKind())
{
forceManifestRegeneration( event.getMavenProject().getProject(), monitor );
}
Expand Down

0 comments on commit 58ddac3

Please sign in to comment.