straikmen 18 Опубликовано 7 июня, 2015 Что за ошибка при компиляции .hg not found Запуск сборки ERROR [L2GameServer.java - 66]: Error read manifest: [Ant-Version -> Apache Ant 1.9.4, Built-At -> 07/06/2015 08:11:49, Implementation-Version -> abort: there is no Mercurial repository here (.hg not found), Created-By -> 1.8.0_45-b15 (Oracle Corporation), Manifest-Version -> 1.0] java.lang.NumberFormatException: For input string: "abort: there is no Mercurial repository here (.hg not found)" at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at ru.catssoftware.gameserver.L2GameServer.<init>(L2GameServer.java:55) at ru.catssoftware.gameserver.L2GameServer.getInstance(L2GameServer.java:27) at ru.catssoftware.gameserver.util.BootManager.<init>(BootManager.java:84) at ru.catssoftware.gameserver.util.BootManager.main(BootManager.java:23) Вот эта строчка в biuld.xml <exec executable="hg" outputproperty="git.Revision.count"> Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Mizuwokiru 181 Опубликовано 7 июня, 2015 удали ее. Либо через TortoiseHG или консольный вариант Mercurial чекни репозиторий. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
straikmen 18 Опубликовано 7 июня, 2015 удали ее. Либо через TortoiseHG или консольный вариант Mercurial чекни репозиторий. Если удалить будет другая ошибка. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Mizuwokiru 181 Опубликовано 7 июня, 2015 Скинь сюда билд файл. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
straikmen 18 Опубликовано 7 июня, 2015 Скинь сюда билд файл. <project default="all" basedir="../"> <property name="output" location="build" /> <target name="all"> <antcall target="revision"/> <ant antfile="./ant/folder_struct.xml"/> <ant antfile="./ant/build_commons.xml"/> <ant antfile="./ant/build_gameserver.xml"/> <ant antfile="./ant/build_gameserver.xml" target="files"/> <ant antfile="./ant/build_lucera.xml"/> <ant antfile="./ant/build_login.xml"/> <ant antfile="./ant/build_login.xml" target="files"/> </target> <target name="rebuild_gameserver"> <ant antfile="./ant/build_gameserver.xml"/> </target> <target name="rebuild_commons"> <ant antfile="./ant/build_commons.xml"/> </target> <target name="rebuild_lucera"> <ant antfile="./ant/build_lucera.xml"/> </target> <target name="rebuild_login"> <ant antfile="./ant/build_login.xml"/> </target> <target name="revision"> <exec executable="hg" outputproperty="git.Revision.count"> <arg line="id --num --rev tip"/> </exec> <property name="Revision" value="${git.Revision.count}"/> <tstamp> <format property="Datetime" pattern="dd/MM/yyyy HH:mm" locale="ru,RU"/> </tstamp> <echo>Revision: ${Revision}</echo> <echo>Time: ${Datetime}</echo> </target> </project> Вот архив со всеми билдами http://rghost.ru/6gVGJ9nlD Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Mizuwokiru 181 Опубликовано 7 июня, 2015 <exec executable="hg" outputproperty="git.Revision.count"> <arg line="id --num --rev tip"/> </exec> этот кусок удаляешь <property name="Revision" value="${git.Revision.count}"/> меняешь на <property name="Revision" value="123"/> Попробуй. 1 Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
straikmen 18 Опубликовано 7 июня, 2015 <exec executable="hg" outputproperty="git.Revision.count"> <arg line="id --num --rev tip"/> </exec> этот кусок удаляешь <property name="Revision" value="${git.Revision.count}"/> меняешь на <property name="Revision" value="123"/> Попробуй. Спасибо! Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты