Class LocalMavenDependency
- java.lang.Object
-
- com.atlassian.confluence.it.maven.LocalMavenDependency
-
- All Implemented Interfaces:
MavenDependency
@Deprecated public class LocalMavenDependency extends Object implements MavenDependency
Deprecated.Please use confluence-test-utils module instead. See {com.atlassian.confluence.test.plugin.maven.LocalMavenDependency} alternativeRepresents a Maven dependency found in the local repository.To determine the location of the local repository, it first checks the 'localRepository' system property, then looks at your ~/.m2/settings.xml to see if a localRepository is set. If not, it defaults to ~/.m2/repository.
-
-
Constructor Summary
Constructors Constructor Description LocalMavenDependency(String groupId, String artifactId, String version, String packaging)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description File
getFile()
Deprecated.Returns a file representing the dependency in the local repository, using the conventions of a Maven 2 repository.String
toString()
Deprecated.
-
-
-
Method Detail
-
getFile
public File getFile()
Deprecated.Returns a file representing the dependency in the local repository, using the conventions of a Maven 2 repository. The file that is returned may or may not exist.- Specified by:
getFile
in interfaceMavenDependency
-
toString
public String toString()
Deprecated.- Specified by:
toString
in interfaceMavenDependency
- Overrides:
toString
in classObject
-
-