* use canonical filepath cache in cxx indexer * made constructors of FilePath explicit * use FilePath at more places instead of string * forward declares FilePath wherever possible
16 lines
511 B
C++
16 lines
511 B
C++
#ifndef UTILITY_MAVEN_H
|
|
#define UTILITY_MAVEN_H
|
|
|
|
#include <vector>
|
|
|
|
class FilePath;
|
|
|
|
namespace utility
|
|
{
|
|
bool mavenGenerateSources(const FilePath& mavenPath, const FilePath& projectDirectoryPath);
|
|
bool mavenCopyDependencies(const FilePath& mavenPath, const FilePath& projectDirectoryPath, const FilePath& outputDirectoryPath);
|
|
std::vector<FilePath> mavenGetAllDirectoriesFromEffectivePom(const FilePath& mavenPath, const FilePath& projectDirectoryPath, bool addTestDirectories);
|
|
}
|
|
|
|
#endif // UTILITY_MAVEN_H
|