Skip to content
Snippets Groups Projects
Commit 430caada authored by UnAfraid's avatar UnAfraid
Browse files

Adding ignores to bin, build folders

Removing old svn way of versioning now it won't work like that soon will
be implemented for git.
parent a8be1d5c
No related branches found
No related tags found
No related merge requests found
/bin/
/build/
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<property name="build.dist.game" location="${build.dist}/game" /> <property name="build.dist.game" location="${build.dist}/game" />
<property name="build.dist.login" location="${build.dist}/login" /> <property name="build.dist.login" location="${build.dist}/login" />
<target name="init" depends="checkRequirements,getDateAndVersion" description="Create the output directories."> <target name="init" depends="checkRequirements" description="Create the output directories.">
<mkdir dir="${build}" /> <mkdir dir="${build}" />
</target> </target>
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
<sync todir="${build.dist}" includeemptydirs="true"> <sync todir="${build.dist}" includeemptydirs="true">
<fileset dir="dist" /> <fileset dir="dist" />
</sync> </sync>
<concat destfile="${build.dist.game}/config/l2jdp-version.properties">version=${l2j.version}${line.separator}builddate=${build.tstamp}</concat>
</target> </target>
<target name="build" depends="dist"> <target name="build" depends="dist">
...@@ -49,20 +48,4 @@ ...@@ -49,20 +48,4 @@
</condition> </condition>
</fail> </fail>
</target> </target>
<target name="getDateAndVersion" description="Get Date and Version.">
<tstamp>
<format property="build.tstamp" pattern="dd/MM/yyyy HH:mm" />
</tstamp>
<exec dir="${basedir}" executable="svnversion" outputproperty="l2j.version">
<arg value="-c" />
<redirector>
<outputfilterchain>
<tokenfilter>
<replaceregex pattern="[0-9]+\:" replace="" />
</tokenfilter>
</outputfilterchain>
</redirector>
</exec>
</target>
</project> </project>
\ No newline at end of file
...@@ -35,7 +35,6 @@ import java.util.StringTokenizer; ...@@ -35,7 +35,6 @@ import java.util.StringTokenizer;
import javolution.util.FastComparator; import javolution.util.FastComparator;
import javolution.util.FastTable; import javolution.util.FastTable;
import com.l2jserver.Config;
import com.l2jserver.gameserver.GameTimeController; import com.l2jserver.gameserver.GameTimeController;
import com.l2jserver.gameserver.LoginServerThread; import com.l2jserver.gameserver.LoginServerThread;
import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.ThreadPoolManager;
...@@ -167,8 +166,6 @@ public class DebugHandler implements ITelnetHandler ...@@ -167,8 +166,6 @@ public class DebugHandler implements ITelnetHandler
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
sb.append(sdf.format(cal.getTime())); sb.append(sdf.format(cal.getTime()));
sb.append("\n\nL2J Server Version: " + Config.SERVER_VERSION);
sb.append("\nDP Revision: " + Config.DATAPACK_VERSION);
sb.append("\n\n"); sb.append("\n\n");
uptime = _uptime; uptime = _uptime;
sb.append(getServerStatus()); sb.append(getServerStatus());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment