Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
<version>43</version>
<version>44</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -149,6 +149,7 @@ under the License.
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${version.maven-plugin-tools}</version>
<scope>provided</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* @author <a href="mailto:[email protected]">Allan Ramirez</a>
*/
public class DeployFileMojoTest extends AbstractMojoTestCase {
private final String LOCAL_REPO = getBasedir() + "/target/local-repo";
private static final String LOCAL_REPO = getBasedir() + "/target/local-repo";

private List<String> expectedFiles;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void tearDown() {
static class MockDeployFileMojo extends DeployFileMojo {
private Model model;

public MockDeployFileMojo(Model model) {
MockDeployFileMojo(Model model) {
this.model = model;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public class DeployMojoTest extends AbstractMojoTestCase {

private File localRepo;

private final String LOCAL_REPO = getBasedir() + "/target/local-repo";
private static final String LOCAL_REPO = getBasedir() + "/target/local-repo";

private final String REMOTE_REPO = getBasedir() + "/target/remote-repo";
private static final String REMOTE_REPO = getBasedir() + "/target/remote-repo";

DeployArtifactStub artifact;

Expand Down Expand Up @@ -628,7 +628,7 @@ public void testNonPomDeployWithAttachedArtifactsOnly() throws Exception {
}

@Ignore("SCP is not part of Maven3 distribution. Aether handles transport extensions.")
public void _testBasicDeployWithScpAsProtocol() throws Exception {
public void basicDeployWithScpAsProtocol() throws Exception {
String originalUserHome = System.getProperty("user.home");

// FIX THE DAMN user.home BEFORE YOU DELETE IT!!!
Expand Down
Loading