IDEA-152069 - During development IntelliJ IDEA should support development with WAS Liberty from workspace - Update and (Re)Deploy actions

(cherry picked from commit 539f8ed)
This commit is contained in:
Michael Golubev
2016-10-11 20:12:21 +02:00
parent c8f6dedc9b
commit cf3e7aa05d
2 changed files with 7 additions and 0 deletions
@@ -29,4 +29,6 @@ public interface ArtifactDeploymentSource extends DeploymentSource {
@Nullable
Artifact getArtifact();
boolean isBuildNeeded();
}
@@ -33,6 +33,11 @@ public class ArtifactDeploymentSourceImpl implements ArtifactDeploymentSource {
return myPointer.getArtifact();
}
@Override
public boolean isBuildNeeded() {
return true;
}
@Override
public File getFile() {
final String path = getFilePath();