If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:5222
L2JDP Revision Number:8742
Hi ,
i have a big problem with my l2jserver.jar after a compilation
Please Help me
l2jserver.jar
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 6
- Joined: Tue Feb 28, 2012 10:20 pm
l2jserver.jar
You do not have the required permissions to view the files attached to this post.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
-
- Posts: 6
- Joined: Tue Feb 28, 2012 10:20 pm
Re: l2jserver.jar
my build process log ?MELERIX wrote:post your build process log.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
- neaton
- Posts: 13
- Joined: Mon Mar 12, 2012 10:15 am
- Location: Moscow
- Contact:
Re: l2jserver.jar
the problem is in clan name template.
check this in your configs and get it a default parametr.
check this in your configs and get it a default parametr.
-- illegal signature: first strike --
-
- Posts: 6
- Joined: Tue Feb 28, 2012 10:20 pm
Re: l2jserver.jar
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><project name="L2J_Server_BETA" default="dist" basedir="."> <description> This script will build the L2J Server. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. http://www.gnu.org/copyleft/gpl.html </description> <property name="src" location="java" /> <property name="lib" location="lib" /> <property name="build" location="build" /> <property name="build.classes" location="${build}/classes" /> <property name="build.dist" location="${build}/dist" /> <property name="build.dist.doc" location="${build.dist}/doc" /> <property name="build.dist.game" location="${build.dist}/game" /> <property name="build.dist.libs" location="${build.dist}/libs" /> <property name="build.dist.login" location="${build.dist}/login" /> <property name="build.dist.tools" location="${build.dist}/tools" /> <path id="classpath"> <fileset dir="${lib}"> <include name="*.jar" /> </fileset> </path> <pathconvert property="manifest.libs" pathsep=" "> <path refid="classpath" /> <mapper> <chainedmapper> <flattenmapper /> <globmapper from="*.jar" to="../libs/*.jar" /> </chainedmapper> </mapper> </pathconvert> <target name="init" depends="clean,checkRequirements,getChangelogDateVersion" description="Create the output directories."> <mkdir dir="${build}" /> <mkdir dir="${build.classes}" /> </target> <target name="compile" depends="init" description="Compile the source."> <javac srcdir="${src}" classpathref="classpath" destdir="${build.classes}" compiler="javac1.7" debug="true" debuglevel="lines,vars,source" includeantruntime="false" source="1.7" target="1.7" /> </target> <target name="jar" depends="compile" description="Create the jar files"> <jar destfile="${build.dist.login}/l2jlogin.jar"> <fileset dir="${build.classes}"> <exclude name="**/dbinstaller/**" /> <exclude name="**/gameserver/**" /> </fileset> <manifest> <attribute name="Built-By" value="${user.name}" /> <attribute name="Built-Date" value="${build.tstamp}" /> <attribute name="Class-Path" value="${manifest.libs}" /> <attribute name="Implementation-URL" value="http://www.l2jserver.com/" /> <attribute name="Implementation-Version" value="${l2j.version}" /> <attribute name="Main-Class" value="com.l2jserver.loginserver.L2LoginServer" /> </manifest> </jar> <jar destfile="${build.dist.game}/l2jserver.jar"> <fileset dir="${build.classes}"> <exclude name="**/dbinstaller/**" /> <exclude name="**/loginserver/**" /> <exclude name="**/accountmanager/**" /> <exclude name="**/gsregistering/**" /> </fileset> <manifest> <attribute name="Built-By" value="${user.name}" /> <attribute name="Built-Date" value="${build.tstamp}" /> <attribute name="Class-Path" value="${manifest.libs}" /> <attribute name="Implementation-URL" value="http://www.l2jserver.com/" /> <attribute name="Implementation-Version" value="${l2j.version}" /> <attribute name="Main-Class" value="com.l2jserver.gameserver.GameServer" /> </manifest> </jar> <jar destfile="${build.dist.tools}/dbinst_cs.jar"> <fileset dir="${build.classes}"> <include name="**/dbinstaller/**" /> <include name="**/images/**" /> <include name="**/util/swing/**" /> <exclude name="**/LauncherGS*" /> <exclude name="**/LauncherLS*" /> </fileset> <manifest> <attribute name="Built-By" value="${user.name}" /> <attribute name="Built-Date" value="${build.tstamp}" /> <attribute name="Class-Path" value="${manifest.libs}" /> <attribute name="Implementation-URL" value="http://www.l2jserver.com/" /> <attribute name="Implementation-Version" value="${l2j.version}" /> <attribute name="Main-Class" value="com.l2jserver.tools.dbinstaller.LauncherCS" /> </manifest> </jar> <jar destfile="${build.dist.tools}/dbinst_gs.jar"> <fileset dir="${build.classes}"> <include name="**/dbinstaller/**" /> <include name="**/images/**" /> <include name="**/util/swing/**" /> <exclude name="**/LauncherCS*" /> <exclude name="**/LauncherLS*" /> </fileset> <manifest> <attribute name="Built-By" value="${user.name}" /> <attribute name="Built-Date" value="${build.tstamp}" /> <attribute name="Class-Path" value="${manifest.libs}" /> <attribute name="Implementation-URL" value="http://www.l2jserver.com/" /> <attribute name="Implementation-Version" value="${l2j.version}" /> <attribute name="Main-Class" value="com.l2jserver.tools.dbinstaller.LauncherGS" /> </manifest> </jar> <jar destfile="${build.dist.tools}/dbinst_ls.jar"> <fileset dir="${build.classes}"> <include name="**/dbinstaller/**" /> <include name="**/images/**" /> <include name="**/util/swing/**" /> <exclude name="**/LauncherCS*" /> <exclude name="**/LauncherGS*" /> </fileset> <manifest> <attribute name="Built-By" value="${user.name}" /> <attribute name="Built-Date" value="${build.tstamp}" /> <attribute name="Class-Path" value="${manifest.libs}" /> <attribute name="Implementation-URL" value="http://www.l2jserver.com/" /> <attribute name="Implementation-Version" value="${l2j.version}" /> <attribute name="Main-Class" value="com.l2jserver.tools.dbinstaller.LauncherLS" /> </manifest> </jar> </target> <target name="dist" depends="jar"> <copy todir="${build.dist}"> <fileset dir="dist" /> </copy> <concat destfile="${build.dist.doc}/L2J_Server_CHANGELOG.txt">${l2j.changelog}</concat> <copy todir="${build.dist.game}"> <fileset dir="misc" /> </copy> <concat destfile="${build.dist.game}/config/l2j-version.properties">version=${l2j.version}${line.separator}builddate=${build.tstamp}</concat> <copy todir="${build.dist.libs}"> <fileset dir="lib" /> </copy> <copy todir="${build.dist.login}"> <fileset dir="misc" /> </copy> <fixcrlf srcdir="${build.dist.game}" eol="crlf" eof="remove" includes="**/*.bat" /> <fixcrlf srcdir="${build.dist.game}" eol="lf" eof="remove" includes="**/*.sh" /> <fixcrlf srcdir="${build.dist.login}" eol="crlf" eof="remove" includes="**/*.bat" /> <fixcrlf srcdir="${build.dist.login}" eol="lf" eof="remove" includes="**/*.sh" /> <zip destfile="${build}/L2J_Server_BETA.zip" basedir="${build.dist}" /> </target> <target name="clean" description="Remove the output directories"> <delete dir="${build}" /> </target> <target name="checkRequirements" description="Check Requirements"> <fail message="Ant 1.8.2 is required. But your version is ${ant.version}"> <condition> <not> <antversion atleast="1.8.2" /> </not> </condition> </fail> <available classname="java.lang.AutoCloseable" property="JDK7.present" /> <fail unless="JDK7.present" message="Java 1.7 is required. But your version is Java ${ant.java.version} and probably JDK is not installed." /> </target> <target name="getChangelogDateVersion" description="Get Changelog, Date, Version"> <exec dir="." executable="svn" outputproperty="l2j.changelog"> <arg value="log" /> <arg value="--stop-on-copy" /> </exec> <tstamp> <format property="build.tstamp" pattern="dd/MM/yyyy HH:mm" /> </tstamp> <exec dir="." executable="svnversion" outputproperty="l2j.version" /> </target></project>
Code: Select all
Buildfile: C:\Users\jordan\workspace\L2J_Server_BETA\build.xmlclean: [delete] Deleting directory C:\Users\jordan\workspace\L2J_Server_BETA\buildcheckRequirements:getChangelogDateVersion: [exec] Result: 1 [exec] Result: 1init: [mkdir] Created dir: C:\Users\jordan\workspace\L2J_Server_BETA\build [mkdir] Created dir: C:\Users\jordan\workspace\L2J_Server_BETA\build\classescompile:jar: [jar] Building MANIFEST-only jar: C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\login\l2jlogin.jar [jar] Building MANIFEST-only jar: C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\game\l2jserver.jar [jar] Building MANIFEST-only jar: C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\tools\dbinst_cs.jar [jar] Building MANIFEST-only jar: C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\tools\dbinst_gs.jar [jar] Building MANIFEST-only jar: C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\tools\dbinst_ls.jardist: [copy] Copying 63 files to C:\Users\jordan\workspace\L2J_Server_BETA\build\dist [copy] Copying 5 files to C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\game [copy] Copying 17 files to C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\libs [copy] Copying 5 files to C:\Users\jordan\workspace\L2J_Server_BETA\build\dist\login [zip] Building zip: C:\Users\jordan\workspace\L2J_Server_BETA\build\L2J_Server_BETA.zipBUILD SUCCESSFULTotal time: 4 seconds
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
Re: l2jserver.jar
post your server.properties
-
- Posts: 915
- Joined: Thu Sep 03, 2009 6:36 pm
- Location: Israel
- Contact:
Re: l2jserver.jar
is your trove lib in proper place?
it's simply a missing jar.. no need to post anything
it's simply a missing jar.. no need to post anything

-
- Posts: 484
- Joined: Sat Jan 23, 2010 4:42 pm
Re: l2jserver.jar
Exactly.Probe wrote:is your trove lib in proper place?
it's simply a missing jar.. no need to post anything
Check if all the libs (http://trac.l2jserver.com/browser/branc ... r_BETA/lib) are in the appropriate folder. If not, check em out and start the server again.
I have promises to keep and miles to go before I sleep.