- Use default method on AutoToolTask interface in favor of abstract SimpleAutoTask class - Adjust the path in various .tpl.md files - Remove unused constant in ToolsConstants
22 lines
535 B
Java
22 lines
535 B
Java
package tools.utils;
|
|
|
|
/**
|
|
* Constants for the src/tools folder.
|
|
*/
|
|
public final class ToolsConstants {
|
|
|
|
public static final String MAIN_SOURCE_ROOT = "src/main/java/";
|
|
|
|
public static final String MAIN_RESOURCES_ROOT = "src/main/resources/";
|
|
|
|
public static final String TOOLS_SOURCE_ROOT = "src/test/java/tools/";
|
|
|
|
public static final String DOCS_FOLDER = "docs/";
|
|
|
|
public static final String DOCS_FOLDER_URL = "https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/";
|
|
|
|
private ToolsConstants() {
|
|
}
|
|
|
|
}
|