Skip to content

Commit

Permalink
Move exception class
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed Aug 2, 2014
1 parent 7251abc commit fa6cc46
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
Expand Up @@ -11,7 +11,6 @@
import hudson.tasks.Builder;
import hudson.util.DescribableList;
import hudson.util.FormValidation;
import org.jenkinsci.plugins.artifactdeployer.exception.ArtifactDeployerException;
import org.jenkinsci.plugins.artifactdeployer.service.ArtifactDeployerCopy;
import org.jenkinsci.plugins.artifactdeployer.service.ArtifactDeployerManager;
import org.jenkinsci.plugins.artifactdeployer.service.DeployedArtifactsActionManager;
Expand Down
@@ -1,4 +1,4 @@
package org.jenkinsci.plugins.artifactdeployer.exception;
package org.jenkinsci.plugins.artifactdeployer;

/**
* @author Gregory Boissinot
Expand Down
Expand Up @@ -14,7 +14,6 @@
import hudson.tasks.Recorder;
import hudson.util.DescribableList;
import hudson.util.FormValidation;
import org.jenkinsci.plugins.artifactdeployer.exception.ArtifactDeployerException;
import org.jenkinsci.plugins.artifactdeployer.service.ArtifactDeployerCopy;
import org.jenkinsci.plugins.artifactdeployer.service.ArtifactDeployerManager;
import org.jenkinsci.plugins.artifactdeployer.service.DeployedArtifactsActionManager;
Expand Down
@@ -1,7 +1,7 @@
package org.jenkinsci.plugins.artifactdeployer.service;

import hudson.FilePath;
import org.jenkinsci.plugins.artifactdeployer.exception.ArtifactDeployerException;
import org.jenkinsci.plugins.artifactdeployer.ArtifactDeployerException;

import java.io.IOException;

Expand Down
Expand Up @@ -3,7 +3,7 @@
import com.atlassian.ant.tasks.CopyWithPerms;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.types.FileSet;
import org.jenkinsci.plugins.artifactdeployer.exception.ArtifactDeployerException;
import org.jenkinsci.plugins.artifactdeployer.ArtifactDeployerException;

import java.io.File;
import java.util.ArrayList;
Expand Down Expand Up @@ -50,7 +50,7 @@ public List<File> getDeployedFiles() {
CopyImpl copyTask = new CopyImpl();
copyTask.setTodir(target);
copyTask.addFileset(fileSet);
//Do not overwrite file: the plugin has the delete content directory previously feature
//Do not overwrite file: the plugin has the delete content directory previously
copyTask.setOverwrite(false);
copyTask.setIncludeEmptyDirs(true);
copyTask.setFlatten(flatten);
Expand Down

0 comments on commit fa6cc46

Please sign in to comment.