[FEAT] continue maven integration
This commit is contained in:
parent
e1a043a34a
commit
e0b67d62cd
49
.classpath
49
.classpath
@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="lib" path="lib/jgit_bundle-5.12.0.jar">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="lib" path="lib/slf4j-simple-1.7.31.jar">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5">
|
||||
<attributes>
|
||||
<attribute name="test" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/atriasoft-etk">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/atriasoft-death">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/atriasoft-exml">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/atriasoft-ejson">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="output" path="out/eclipse/classes"/>
|
||||
</classpath>
|
18
.project
18
.project
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>atriasoft-island</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
<project>atriasoft-island</project>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
3
out/eclipse/.gitignore
vendored
3
out/eclipse/.gitignore
vendored
@ -1,3 +0,0 @@
|
||||
|
||||
/__pycache__/
|
||||
/classes/
|
@ -18,55 +18,55 @@ public class Log {
|
||||
|
||||
public static void critical(final String data, final Exception e) {
|
||||
e.printStackTrace();
|
||||
if (LOGGER.PRINT_CRITICAL || Log.FORCE) {
|
||||
if (LOGGER.PRINT_CRITICAL || LOGGER.FORCE) {
|
||||
Logger.critical(LOGGER.LIB_NAME_DRAW, data + " : " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public static void critical(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_CRITICAL || Log.FORCE) {
|
||||
if (LOGGER.PRINT_CRITICAL || LOGGER.FORCE) {
|
||||
Logger.critical(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void debug(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_DEBUG || Log.FORCE) {
|
||||
if (LOGGER.PRINT_DEBUG || LOGGER.FORCE) {
|
||||
Logger.debug(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void error(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_ERROR || Log.FORCE) {
|
||||
if (LOGGER.PRINT_ERROR || LOGGER.FORCE) {
|
||||
Logger.error(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void info(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_INFO || Log.FORCE) {
|
||||
if (LOGGER.PRINT_INFO || LOGGER.FORCE) {
|
||||
Logger.info(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_PRINT || Log.FORCE) {
|
||||
if (LOGGER.PRINT_PRINT || LOGGER.FORCE) {
|
||||
Logger.print(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void todo(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_TODO || Log.FORCE) {
|
||||
if (LOGGER.PRINT_TODO || LOGGER.FORCE) {
|
||||
Logger.todo(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void verbose(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_VERBOSE || Log.FORCE) {
|
||||
if (LOGGER.PRINT_VERBOSE || LOGGER.FORCE) {
|
||||
Logger.verbose(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
||||
public static void warning(final String data, Object... objects) {
|
||||
if (LOGGER.PRINT_WARNING || Log.FORCE) {
|
||||
if (LOGGER.PRINT_WARNING || LOGGER.FORCE) {
|
||||
Logger.warning(LOGGER.LIB_NAME_DRAW, data, objects);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user