mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-03 09:10:01 +01:00
Improve bat helpers / minor changes to logging and todo messages
This commit is contained in:
parent
73a9b5ce0c
commit
1f35ccd841
@ -278,7 +278,7 @@ public class AuthMe extends JavaPlugin {
|
||||
|
||||
// If server is using PermissionsBukkit, print a warning that some features may not be supported
|
||||
if (PermissionsSystemType.PERMISSIONS_BUKKIT.equals(permsMan.getPermissionSystem())) {
|
||||
ConsoleLogger.info("Warning! This server uses PermissionsBukkit for permissions! Some permissions features may not be supported!");
|
||||
ConsoleLogger.showError("Warning! This server uses PermissionsBukkit for permissions. Some permissions features may not be supported!");
|
||||
}
|
||||
|
||||
// Purge on start if enabled
|
||||
|
@ -76,7 +76,7 @@ public class PurgeService implements Reloadable {
|
||||
if (!settings.getProperty(PurgeSettings.USE_AUTO_PURGE)) {
|
||||
return;
|
||||
} else if (daysBeforePurge <= 0) {
|
||||
ConsoleLogger.showError("Configured days before purging must be positive");
|
||||
ConsoleLogger.showError("Did not run auto purge: configured days before purging must be positive");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -6,7 +6,7 @@ import org.junit.Ignore;
|
||||
* Test for {@link CryptPBKDF2}.
|
||||
*/
|
||||
@Ignore
|
||||
// TODO #369: This algorithm seems broken
|
||||
// TODO #685: This algorithm seems broken
|
||||
public class CryptPBKDF2Test extends AbstractEncryptionMethodTest {
|
||||
|
||||
public CryptPBKDF2Test() {
|
||||
|
5
src/test/java/tools/bathelpers/freshen_jar.bat
Normal file
5
src/test/java/tools/bathelpers/freshen_jar.bat
Normal file
@ -0,0 +1,5 @@
|
||||
: Shortcut for quickbuild / move to plugins / run server
|
||||
|
||||
call quick_build.bat
|
||||
call move_plugin.bat
|
||||
call run_server.bat
|
@ -1,11 +1,10 @@
|
||||
: Moves the AuthMe JAR file to the plugins folder of the test server
|
||||
: You will have to hit 'Y' to really replace it if it already exists
|
||||
if "%jarfile%" == "" (
|
||||
call setvars.bat
|
||||
)
|
||||
|
||||
if exist %jarfile% (
|
||||
xcopy %jarfile% %plugins%
|
||||
xcopy %jarfile% %plugins% /y
|
||||
) else (
|
||||
echo Target file not found: '%jarfile%'
|
||||
)
|
||||
|
@ -3,4 +3,4 @@ if "%jarfile%" == "" (
|
||||
call setvars.bat
|
||||
)
|
||||
|
||||
mvn install -f "%pomfile%" -Dmaven.test.skip
|
||||
mvn install -o -f "%pomfile%" -Dmaven.test.skip
|
||||
|
Loading…
Reference in New Issue
Block a user