Constructor and Description |
---|
DependencyUtil() |
Modifier and Type | Method and Description |
---|---|
static String |
cleanToBeTokenizedString(String str)
clean up configuration string before it can be tokenized
|
static String |
getFormattedFileName(Artifact artifact,
boolean removeVersion)
Builds the file name.
|
static String |
getFormattedFileName(Artifact artifact,
boolean removeVersion,
boolean prependGroupId)
Builds the file name.
|
static String |
getFormattedFileName(Artifact artifact,
boolean removeVersion,
boolean prependGroupId,
boolean useBaseVersion)
Builds the file name.
|
static String |
getFormattedFileName(Artifact artifact,
boolean removeVersion,
boolean prependGroupId,
boolean useBaseVersion,
boolean removeClassifier)
Builds the file name.
|
static File |
getFormattedOutputDirectory(boolean useSubdirsPerScope,
boolean useSubdirsPerType,
boolean useSubdirPerArtifact,
boolean useRepositoryLayout,
boolean removeVersion,
File outputDirectory,
Artifact artifact)
Formats the outputDirectory based on type.
|
static void |
log(String string,
Log log)
Writes the specified string to the log at info level.
|
static String[] |
tokenizer(String str)
mainly used to parse excludes,includes configuration
|
static void |
write(String string,
File file,
boolean append,
Log log)
Writes the specified string to the specified file.
|
public static String getFormattedFileName(Artifact artifact, boolean removeVersion)
artifact
- File to be formatted.removeVersion
- Specifies if the version should be removed from the file name.getFormattedFileName(Artifact, boolean, boolean)
public static String getFormattedFileName(Artifact artifact, boolean removeVersion, boolean prependGroupId)
artifact
- File to be formatted.removeVersion
- Specifies if the version should be removed from the file name.prependGroupId
- Specifies if the groupId should be prepended to the file name.public static String getFormattedFileName(Artifact artifact, boolean removeVersion, boolean prependGroupId, boolean useBaseVersion)
artifact
- File to be formatted.removeVersion
- Specifies if the version should be removed from the file name.prependGroupId
- Specifies if the groupId should be prepended to the file name.useBaseVersion
- Specifies if the baseVersion of the artifact should be used instead of the version.public static String getFormattedFileName(Artifact artifact, boolean removeVersion, boolean prependGroupId, boolean useBaseVersion, boolean removeClassifier)
artifact
- File to be formatted.removeVersion
- Specifies if the version should be removed from the file name.prependGroupId
- Specifies if the groupId should be prepended to the file name.useBaseVersion
- Specifies if the baseVersion of the artifact should be used instead of the version.removeClassifier
- Specifies if the classifier of the artifact should be remved from the file name.public static File getFormattedOutputDirectory(boolean useSubdirsPerScope, boolean useSubdirsPerType, boolean useSubdirPerArtifact, boolean useRepositoryLayout, boolean removeVersion, File outputDirectory, Artifact artifact)
useSubdirsPerScope
- if a new sub directory should be used for each scope.useSubdirsPerType
- if a new sub directory should be used for each type.useSubdirPerArtifact
- if a new sub directory should be used for each artifact.useRepositoryLayout
- if dependencies must be moved into a Maven repository layout, if set, other settings
will be ignored.removeVersion
- if the version must not be mentioned in the filenameoutputDirectory
- base outputDirectory.artifact
- information about the artifact.public static void write(String string, File file, boolean append, Log log) throws IOException
string
- the string to writefile
- the file to write toappend
- append to existing file or not.log
- where to send the logging output.IOException
- if an I/O error occurspublic static void log(String string, Log log) throws IOException
string
- the string to writelog
- where to log information.IOException
- if an I/O error occurspublic static String[] tokenizer(String str)
str
- The string to be split.Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.