Авторизация

Войдите, используя свой логин и пароль:

Страница 1 из 1 1
Модератор форума: BlesseNtumble  
Форум » Lineage 2 "Java" » Сборки Java » Ошибка компиляции
Ошибка компиляции
Отправлено 24.07.2012 - 19:541
Пользователи
222 сообщений
Мужчина
Статус: Offline
Buildfile: E:\server\L2J_Server\build.xml
checkRequirements:
getChangelogDateVersion:

BUILD FAILED
E:\server\L2J_Server\build.xml:221: Execute failed: java.io.IOException: Cannot run program "svn": CreateProcess error=2, ?? ??????? ????? ????????? ????

Total time: 531 milliseconds
Профиль Личное сообщение Дом. страница icq
7
Отправлено 24.07.2012 - 20:312
Пользователи
600 сообщений
Мужчина
Статус: Offline
файл буилд 221 строка

Добавлено (24.07.2012, 20:31)
---------------------------------------------
нажми на ошибку тебя туда перекинет

Ставьте +, а то помогать не буду больше...
Профиль Личное сообщение Дом. страница icq
66
Отправлено 24.07.2012 - 21:133
Пользователи
222 сообщений
Мужчина
Статус: Offline
Code
<?xml version="1.0" encoding="UTF-8"?>
<project name="L2J_Server" default="build" 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="build" location="build" />
  <property name="build.bin" location="${build}/bin" />
  <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.login" location="${build.dist}/login" />
  <property name="build.dist.tools" location="${build.dist}/tools" />
  <property name="libs" location="dist/libs" />
  <property name="src" location="java" />

  <path id="classpath">
   <fileset dir="${libs}">
    <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="checkRequirements,getChangelogDateVersion" description="Create the output directories.">
   <delete dir="${build.bin}" quiet="true" />
   <mkdir dir="${build.bin}" />
  </target>

  <target name="dist" depends="init" description="Export the files to the output directory.">
   <sync todir="${build.dist}" includeemptydirs="true">
    <fileset dir="dist" />
   </sync>
   <concat destfile="${build.dist.doc}/L2J_Server_CHANGELOG.txt">${l2j.changelog}</concat>
   <concat destfile="${build.dist.game}/config/l2j-version.properties">version=${l2j.version}${line.separator}builddate=${build.tstamp}</concat>
  </target>

  <target name="compile" depends="dist" description="Compile the source.">
   <javac srcdir="${src}" classpathref="classpath" destdir="${build.bin}" 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" level="9">
    <fileset dir="${build.bin}">
     <exclude name="**/dbinstaller/**" />
     <exclude name="**/gameserver/**" />
    </fileset>
    <manifest>
     <attribute name="Built-By" value="${user.name}" />
     <attribute name="Built-Date" value="${build.tstamp}" />
     <attribute name="Implementation-URL" value="http://www.l2jserver.com/" />
     <attribute name="Implementation-Version" value="${l2j.version}" />
    </manifest>
   </jar>
   <jar destfile="${build.dist.login}/L2J_Configurator.jar" level="9">
    <fileset dir="${build.bin}">
     <include name="**/configurator/**" />
     <include name="**/i18n/**" />
     <include name="**/images/**" />
     <exclude name="**/accountmanager/**" />
     <exclude name="**/dbinstaller/**" />
     <exclude name="**/gameserver/**" />
     <exclude name="**/gsregistering/**" />
     <exclude name="**/log/**" />
     <exclude name="**/loginserver/**" />
     <exclude name="**/ngl/**" />
     <exclude name="**/status/**" />
     <exclude name="**/util/**" />
     <exclude name="**/Config/**" />
     <exclude name="**/L2DatabaseFactory/**" />
     <exclude name="**/Server/**" />
    </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.configurator.ConfigUserInterface" />
    </manifest>
   </jar>
   <jar destfile="${build.dist.game}/l2jserver.jar" level="9">
    <fileset dir="${build.bin}">
     <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="Implementation-URL" value="http://www.l2jserver.com/" />
     <attribute name="Implementation-Version" value="${l2j.version}" />
    </manifest>
   </jar>
   <jar destfile="${build.dist.game}/L2J_Configurator.jar" level="9">
    <fileset dir="${build.bin}">
     <include name="**/configurator/**" />
     <include name="**/i18n/**" />
     <include name="**/images/**" />
     <exclude name="**/accountmanager/**" />
     <exclude name="**/dbinstaller/**" />
     <exclude name="**/gameserver/**" />
     <exclude name="**/gsregistering/**" />
     <exclude name="**/log/**" />
     <exclude name="**/loginserver/**" />
     <exclude name="**/ngl/**" />
     <exclude name="**/status/**" />
     <exclude name="**/util/**" />
     <exclude name="**/Config/**" />
     <exclude name="**/L2DatabaseFactory/**" />
     <exclude name="**/Server/**" />
    </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.configurator.ConfigUserInterface" />
    </manifest>
   </jar>
   <jar destfile="${build.dist.tools}/dbinst_cs.jar" level="9">
    <fileset dir="${build.bin}">
     <include name="**/dbinstaller/**" />
     <include name="**/images/**" />
     <include name="**/util/swing/**" />
     <include name="**/SQLFilter**" />
     <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" level="9">
    <fileset dir="${build.bin}">
     <include name="**/dbinstaller/**" />
     <include name="**/images/**" />
     <include name="**/util/swing/**" />
     <include name="**/SQLFilter**" />
     <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" level="9">
    <fileset dir="${build.bin}">
     <include name="**/dbinstaller/**" />
     <include name="**/images/**" />
     <include name="**/util/swing/**" />
     <include name="**/SQLFilter**" />
     <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="build" depends="jar" description="Create the Zip file.">
   <zip destfile="${build}/L2J_Server.zip" basedir="${build.dist}" level="9" />
  </target>

  <target name="checkRequirements" description="Check Requirements.">
   <fail message="Ant 1.8.2 is required. But your version is ${ant.version} and if you are using Eclipse probably is outdated.">
    <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="${basedir}" 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="${basedir}" executable="svnversion" outputproperty="l2j.version" />
  </target>
</project>

Build.xml

Code
    <exec dir="${basedir}" executable="svn" outputproperty="l2j.changelog">

Code
221 строка
Профиль Личное сообщение Дом. страница icq
7
Отправлено 24.07.2012 - 21:294
Пользователи
528 сообщений
Мужчина
Статус: Offline
дело в кодировке
Нужна помощь? Обращайся!
http://flash-dev.in.ua
Профиль Личное сообщение Дом. страница icq
49
Отправлено 24.07.2012 - 22:135
Пользователи
222 сообщений
Мужчина
Статус: Offline
в чем мб проблема при компиляции дп когда использую jdk выдает это Specified VM install not found: type Standard VM, name jre1
а когда jdk6 компилирует но находит ошибки, тревогу дает
а при компиляции просто l2jservera никаких ошибок невыдало
Профиль Личное сообщение Дом. страница icq
7
Отправлено 24.07.2012 - 22:436
Пользователи
600 сообщений
Мужчина
Статус: Offline
Зуб даю что он тебя не понял.

При выборе, нужно указать jdk. и используй 7-ую жабу
Ставьте +, а то помогать не буду больше...
Профиль Личное сообщение Дом. страница icq
66
Отправлено 24.07.2012 - 23:357
Модераторы форума
745 сообщений
Мужчина
Статус: Offline
Code
   <exec dir="${basedir}" executable="svn" outputproperty="l2j.changelog">  
     <arg value="log" />  
     <arg value="--stop-on-copy" />  
    </exec>


Удалите эту часть кода и все.
Профиль Личное сообщение Дом. страница icq
65
Отправлено 25.07.2012 - 16:018
Пользователи
222 сообщений
Мужчина
Статус: Offline
при компилировании с помощью jdk7 "l2j datapack" выдает это дело http://s42.radikal.ru/i096/1207/a3/027dfaf9fab1.png

Добавлено (25.07.2012, 11:36)
---------------------------------------------

Quote (ex3me)
Удалите эту часть кода и все.

делал непомогло

Добавлено (25.07.2012, 11:42)
---------------------------------------------

Quote (ex3me)
Удалите эту часть кода и все.

делал непомогло

Добавлено (25.07.2012, 16:01)
---------------------------------------------
устранил проблему с помощью гугл всем спс " http://knowledgebase.localentity.com/?p=266 "

Профиль Личное сообщение Дом. страница icq
7
Отправлено 01.02.2013 - 13:579
Пользователи
Мужчина
Статус: Offline
Возникла такая же проблема

Код
Buildfile: D:\Server_L2\L2J_Server\build.xml
checkRequirements:
getChangelogDateVersion:

BUILD FAILED
D:\Server_L2\L2J_Server\build.xml:221: Execute failed: java.io.IOException: Cannot run program "svn": CreateProcess error=2, ?? ??????? ????? ????????? ????  

Total time: 380 milliseconds

Добавлено (01.02.2013, 13:57)
---------------------------------------------
Возникла такая же проблема

Код
Buildfile: D:\Server_L2\L2J_Server\build.xml
checkRequirements:
getChangelogDateVersion:

BUILD FAILED
D:\Server_L2\L2J_Server\build.xml:221: Execute failed: java.io.IOException: Cannot run program "svn": CreateProcess error=2, ?? ??????? ????? ????????? ????  

Total time: 380 milliseconds
Профиль Личное сообщение Дом. страница icq
0
Отправлено 17.02.2013 - 17:4910
Пользователи
18 сообщений
Мужчина
Статус: Offline
У вас стоит slik subversion?
http://www.sliksvn.com/en/download
У меня такое было давно очень. Помогла установка данной вещи
Профиль Личное сообщение Дом. страница icq
0
Отправлено 18.02.2013 - 14:5611
Пользователи
10 сообщений
Мужчина
Статус: Offline
В L2J_Server подобное решал удалением из build.xml пару строк.
Профиль Личное сообщение Дом. страница icq
1
Форум » Lineage 2 "Java" » Сборки Java » Ошибка компиляции
Страница 1 из 1 1
Поиск: