Jump to content
  • 0

Eclipse Problem


Question

Posted

Kalhspera exw ena provlhma m to compile.

 

 

BUILD FAILED
C:\Users\???\Desktop\eclipse\workspace\L2jFrozen_GameServer\build.xml:65: Compile failed; see the compiler error output for details.
 
Pataw panw sto link k m vgazei auto:
 

<javac destdir="${build.classes}" includeantruntime="false" optimize="on" debug="on" source="1.6" target="1.6" encoding="utf-8" nowarn="off">

 

10 answers to this question

Recommended Posts

  • 0
Posted

Kalhspera exw ena provlhma m to compile.

 

 

BUILD FAILED
C:\Users\ ???\Desktop\eclipse\workspace\L2jFrozen_GameServer\build.xml:65: Compile failed; see the compiler error output for details.
 
Pataw panw sto link k m vgazei auto:
 

<javac destdir="${build.classes}" includeantruntime="false" optimize="on" debug="on" source="1.6" target="1.6" encoding="utf-8" nowarn="off">

 

Kalhspera exw ena provlhma m to compile.

 

 

BUILD FAILED
C:\Users\ ???\Desktop\eclipse\workspace\L2jFrozen_GameServer\build.xml:65: Compile failed; see the compiler error output for details.
 
Pataw panw sto link k m vgazei auto:
 

<javac destdir="${build.classes}" includeantruntime="false" optimize="on" debug="on" source="1.6" target="1.6" encoding="utf-8" nowarn="off">

ti java version exeis?

  • 0
Posted
To build, java exw to jdk 7

 

 

<?xml version="1.0" encoding="UTF-8"?>

<project name="L2jFrozen_GameServer" default="dist-local" basedir=".">

<description>

        This script will build the L2J-Frozen server. Thanks for Using our Pack.

        

        This program is opensource   

        

    </description>

 

<property file="build.properties" />

<property name="src" location="head-src" />

<property name="src-lib" location="lib" />

 

<target name="prepare-test" description="Prepare the test folder property">

 

<property name="build" location="${test_destination_folder}" />

 

</target>

 

<target name="prepare-compiledRev" description="Prepare the compiledRev folder property">

 

<property name="build" location="${compiled_rev_destination_folder}" />

 

</target>

 

<target name="prepare-local" description="Prepare the local folder property">

 

<property name="build" location="build" />

 

</target>

 

<target name="prepare-final" description="Prepare the final folders properties">

 

<property name="build.classes" location="${build}/classes" />

<property name="build.dist" location="${build}/dist" />

<property name="build.dist.login" location="${build.dist}/loginserver" />

<property name="build.dist.login.lib" location="${build.dist.login}/lib" />

<property name="build.dist.game" location="${build.dist}/gameserver" />

<property name="build.dist.game.lib" location="${build.dist.game}/lib" />

<property name="properties-file" location="${build.dist.game}/config/version/l2jfrozen-server.properties" />

 

</target>

 

<path id="classpath">

<fileset dir="${src-lib}">

<include name="*.jar" />

</fileset>

</path>

 

<target name="init" description="Create the output directories.">

 

<mkdir dir="${build}" />

<mkdir dir="${build.classes}" />

<mkdir dir="${build.dist}" />

<mkdir dir="${build.dist.login}" />

<mkdir dir="${build.dist.login.lib}" />

<mkdir dir="${build.dist.game}" />

<mkdir dir="${build.dist.game.lib}" />

 

</target>

 

 

<target name="compile" depends="version" description="Compile the source.">

 

<javac destdir="${build.classes}" includeantruntime="false" optimize="on" debug="on" source="1.6" target="1.6" encoding="utf-8" nowarn="off">

<src path="${src}" />

<classpath refid="classpath" />

</javac>

</target>

 

 

<target name="jar" depends="compile" description="Create the jar file">

 

<jar destfile="${build}/l2jfrozen-core.jar">

<fileset dir="${build.classes}" />

</jar>

 

<copy todir="${build.dist.login.lib}">

<fileset dir="${build}">

<include name="l2jfrozen-core.jar" />

</fileset>

</copy>

<copy todir="${build.dist.game.lib}">

<fileset dir="${build}">

<include name="l2jfrozen-core.jar" />

</fileset>

</copy>

 

</target>

 

<target name="export" depends="jar">

 

<!-- copy todir="${build.dist.login}">

<fileset dir="config/others">

<include name="log.cfg" />

<include name="servername.xml" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}">

<fileset dir="config/others">

<include name="log.cfg" />

</fileset>

</copy -->

 

<copy todir="${build.dist.game.lib}">

<fileset dir="${src-lib}">

<include name="*.jar" />

<include name="*.txt" />

</fileset>

</copy>

 

<copy todir="${build.dist.login.lib}">

<fileset dir="${src-lib}">

<include name="*.jar" />

<include name="*.txt" />

</fileset>

</copy>

 

<copy todir="${build.dist.login}">

<fileset dir="dist">

<include name="LoginServer_loop.sh" />

<include name="startLoginServer.*" />

<include name="anti_ddos.*" />

<include name="RegisterGameServer.*" />

</fileset>

</copy>

<copy todir="${build.dist.game}">

<fileset dir="dist">

<include name="GameServer_loop.sh" />

<include name="startGameServer.*" />

<include name="startBackup.*" />

</fileset>

</copy>

<copy todir="${build.dist}">

<fileset dir="dist">

<include name="Start_GameServer_noScreen.sh" />

<include name="Start_LoginServer_noScreen.sh" />

</fileset>

</copy>

 

<fixcrlf srcdir="${build.dist.game}" eol="lf" eof="remove" includes="**/*.sh">

</fixcrlf>

<fixcrlf srcdir="${build.dist.login}" eol="lf" eof="remove" includes="**/*.sh">

</fixcrlf>

 

<fixcrlf srcdir="${build.dist.game}" eol="crlf" eof="remove" includes="**/*.bat">

</fixcrlf>

<fixcrlf srcdir="${build.dist.login}" eol="crlf" eof="remove" includes="**/*.bat">

</fixcrlf>

 

<mkdir dir="${build.dist.game}/log" />

<mkdir dir="${build.dist.login}/log" />

 

<mkdir dir="${build.dist.login}/config" />

<mkdir dir="${build.dist.login}/config/network" />

<mkdir dir="${build.dist.login}/config/protected" />

 

<mkdir dir="${build.dist.game}/config/protected" />

<mkdir dir="${build.dist.game}/config/head" />

<mkdir dir="${build.dist.game}/config/functions" />

<mkdir dir="${build.dist.game}/config/powerpak" />

<mkdir dir="${build.dist.game}/config/powerpak/webservices" />

<mkdir dir="${build.dist.game}/config/network" />

<mkdir dir="${build.dist.game}/config/fun" />

 

<mkdir dir="${build.dist.game}/config/others" />

 

<!-- game server -->

<copy todir="${build.dist.game}/config">

<fileset dir="config">

<include name="*.properties" />

<include name="*.info" />

<include name="chatfilter.txt" />

<include name="questionwords.txt" />

<include name="key.cfg" />

<!-- include name="banned_ip.cfg" / -->

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/protected">

<fileset dir="config/protected">

<include name="*.properties" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/functions">

<fileset dir="config/functions">

<include name="*.properties" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/head">

<fileset dir="config/head">

<include name="*.properties" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/powerpak">

<fileset dir="config/powerpak">

<include name="*.*" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/powerpak/webservices">

<fileset dir="config/powerpak/webservices">

<include name="*.*" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/frozen">

<fileset dir="config/frozen">

<include name="*.properties" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/fun">

<fileset dir="config/fun">

<include name="*.properties" />

</fileset>

</copy>

<!-- network gameserver -->

<copy todir="${build.dist.game}/config/network">

<fileset dir="config/network">

<include name="gameserver.properties" />

</fileset>

</copy>

 

<copy todir="${build.dist.game}/config/others">

<fileset dir="config/others">

<include name="*.*" />

</fileset>

</copy>

 

<!-- copy todir="${build.dist.game}/">

<fileset dir="config/others">

<include name="*.*" />

</fileset>

</copy -->

 

 

<!-- login server -->

<copy todir="${build.dist.login}/config">

<fileset dir="config">

<include name="telnet.properties" />

</fileset>

<!-- fileset dir="config/others">

<include name="banned_ip.cfg" />

</fileset -->

</copy>

 

<copy todir="${build.dist.login}/config/protected">

<fileset dir="config/protected">

<include name="mmocore.properties" />

</fileset>

</copy>

 

 

<!-- network ls -->

<copy todir="${build.dist.login}/config/network">

<fileset dir="config/network">

<include name="loginserver.properties" />

</fileset>

</copy>

 

<copy todir="${build.dist.login}/config/others">

<fileset dir="config/others">

<include name="*.*" />

</fileset>

</copy>

 

 

<delete dir="${build.classes}" />

<delete file="${build}/l2jfrozen-core.jar" />

 

</target>

 

<target name="version" depends="init" description="Create Version file">

 

<tstamp>

<format property="build.tstamp" pattern="dd-MM-yyyy hh:mm:ss aa" />

</tstamp>

 

<exec dir="." executable="./subversion/svnversion" outputproperty="l2jfrozen.revision" failifexecutionfails="false">

<arg line="-n ." />

</exec>

 

<concat destfile="${properties-file}">

     revision=${l2jfrozen.revision}

     builddate=${build.tstamp}


 </concat>

 

<echo>L2jFrozen Gameserver Revision: ${l2jfrozen.revision}</echo>

</target>

 

<target name="dist-local" depends="prepare-local,prepare-final,export" description="Create distribution files and Zip one into 'build' folder">

<zip destfile="${build}/L2JFrozen_GameServer.zip" basedir="${build.dist}" update="true" />

</target>

 

<target name="dist-test" depends="prepare-test,prepare-final,export" description="Create distribution files into 'local_test_folder' folder: change it into build.properties">

</target>

 

<target name="dist-compiledRev" depends="prepare-compiledRev,prepare-final,export" description="Create distribution files into 'compiledRev_folder' folder: change it into build.properties">

</target>

 

<target name="dist-core" description="Generate core jar into 'build-core' folder">

<property name="build" location="build-core" />

<property name="build.classes" location="${build}/classes" />

<delete dir="${build.classes}" />

<delete file="${build}/l2jfrozen-core.jar" />

<mkdir dir="${build}" />

<mkdir dir="${build.classes}" />

<javac destdir="${build.classes}" includeantruntime="false" optimize="on" debug="on" source="1.6" target="1.6" encoding="UTF-8" nowarn="off">

 

<src path="${src}" />

<classpath refid="classpath" />

</javac>

 

<jar destfile="${build}/l2jfrozen-core.jar">

<fileset dir="${build.classes}" />

</jar>

 

<delete dir="${build.classes}" />

</target>

 

</project>

  • 0
Posted
  • 0
Posted (edited)

To exw kanei. 

Metablhth --> JAVA_HOME 

 Timh--> To path C:\Program Files\Java\jdk1.7.0_65\bin

Edited by gta sa
  • 0
Posted

kaneto to java_home xoris to /bin kai dokimase molis patisis saveperimene 2 min na sinxronisi kai dokimase compile eixa to idio problima kai ebgala to /bin apo java_home dokimase kai pesmas

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • We've added 5% discounts for bulk purchases of Google accounts for orders of 300 or more, and 10% for orders of 500 or more. The discount is applied automatically when you place your order! The discount is indicated in the product title and description for each category.  
    • 🎄 CHRISTMAS EVENT 🎄   ‼️ Information and details: https://forum.l2harbor.com/threads/rozhdestvenskie-xlopoty-christmas-chores.9430/post-171464
    • METATG.ORG Direct Telegram Service Provider A bonus of +7% on every order! *We add 7% more followers than your ordered amount to proactively cover potential drops and guarantee you an honest result." Telegram Followers - Price per 1000 SUBSCRIBERS Subscribers 3 days - $0.10 ~ 8 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 7 days - $0.17 ~ 13.6 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 14 days - $0.20 ~ 16 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 30 days - $0.30 ~ 24 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 60 days - $0.40 ~ 32 RUB Subscribers, 14-day guarantee. Daily Completion: 200,000,000 Subscribers 90 days (Super Fast) - $0.50 ~ 40 RUB Subscribers, 14-day guarantee. Daily Completion: 200,000,000 Subscribers 120 days (Super Fast) - $0.60 ~ 48 RUB Subscribers, 14-day guarantee. Daily Completion: 200,000,000 Subscribers Lifetime (Super Fast) - $0.70 ~ 56 RUB Lifetime Subscribers. 14-day guarantee. Daily Completion: 200,000,000 Telegram Services - Price per 1000 Post Views - $0.06 ~ 5 RUB Reactions - $0.08 ~ 6.5 RUB Bot Starts - $0.10 ~ 8 RUB Bot Starts with referrals - $0.15 ~ 12 RUB DISCOUNTS and CASHBACK for large volumes Direct Supplier. We work from our own accounts with our own software! High execution speed. Multiple payment methods. We work 24/7! Additional discounts are discussed for volumes starting from $1000 per day. SUPPORT 24/7 - TELEGRAM WEBSITE 24/7 - METATG.ORG
    • Added: a brand-new default dashboard template. You can now add multiple game/login server builds. Full support for running both PTS & L2J servers simultaneously, with switching between them. Payment systems: added OmegaPay and Pally (new PayPal-style API). Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account. Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.     Look demo site: demo
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock