mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Remove ivy files and etc directory.
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
This version of Apollo contains code from the following people:
|
||||
Graham and the rest of the Apollo team
|
||||
Chris Fletcher (http://www.rune-server.org/members/chris%20fletcher)
|
||||
Major (http://www.rune-server.org/members/major)
|
||||
The Wanderer (http://www.rune-server.org/members/the%20wanderer)
|
||||
|
||||
Current fixes include:
|
||||
317 ChatEventDecoder fix (data read incorrectly) - http://www.rune-server.org/runescape-development/rs2-server/snippets/420815-apollo-317-chat-event-decoder-bug-fix.html.
|
||||
Player region changing fix (appeared to teleport) - http://www.rune-server.org/runescape-development/rs2-server/snippets/420865-apollo-players-changing-regions-appear-teleport-bug.html
|
||||
Walking height level fix (always set to 0)
|
||||
ThirdObjectActionEvent fix (data read incorrectly)
|
||||
Combat level formula fix (calculated incorrectly)
|
||||
Item equipping fix (wasn't removing them correctly)
|
||||
2-handed weapon equip fix
|
||||
SwitchItemEventDecoder fix (data read incorrectly)
|
||||
SetInterfaceTextEventencoder fix (entire class was missing from 317)
|
||||
317 and 377 packet length fixes.
|
||||
Archive decoding fix (data wasn't being extracted properly)
|
||||
Mining plugin: JRuby name clash with 'Gem'
|
||||
@@ -1,93 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<project name="apollo" default="build" xmlns:ivy="antlib:org.apache.ivy.ant">
|
||||
<property name="root" location="." />
|
||||
<property name="src" location="src" />
|
||||
<property name="test" location="test" />
|
||||
<property name="bin" location="bin" />
|
||||
<property name="lib" location="lib" />
|
||||
<property name="doc" location="doc" />
|
||||
<property name="version" value="377" />
|
||||
|
||||
<path id="binaries">
|
||||
<pathelement path="${bin}" />
|
||||
</path>
|
||||
|
||||
<path id="libraries">
|
||||
<fileset dir="${lib}">
|
||||
<include name="*.jar" />
|
||||
</fileset>
|
||||
</path>
|
||||
|
||||
<path id="master">
|
||||
<path refid="binaries" />
|
||||
<path refid="libraries" />
|
||||
</path>
|
||||
|
||||
<fileset id="sources" dir="${src}">
|
||||
<include name="**/*.java" />
|
||||
</fileset>
|
||||
|
||||
<fileset id="tests" dir="${bin}">
|
||||
<include name="**/*Test*.class" />
|
||||
<exclude name="**/*$*.class" />
|
||||
</fileset>
|
||||
|
||||
<target name="init">
|
||||
<mkdir dir="${bin}" />
|
||||
<mkdir dir="${lib}" />
|
||||
<mkdir dir="${doc}" />
|
||||
</target>
|
||||
|
||||
<target name="resolve" depends="init">
|
||||
<ivy:retrieve pattern="${lib}/[artifact]-[revision].[ext]" sync="true" />
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}:${test}" destdir="${bin}" includeantruntime="false">
|
||||
<classpath refid="libraries" />
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
<target name="clean">
|
||||
<delete dir="${bin}" />
|
||||
<delete dir="${doc}" />
|
||||
</target>
|
||||
|
||||
<target name="rebuild" depends="clean, build" />
|
||||
|
||||
<target name="test" depends="build">
|
||||
<junit fork="true" haltonfailure="true">
|
||||
<classpath refid="master" />
|
||||
<formatter type="plain" usefile="false" />
|
||||
<batchtest>
|
||||
<fileset refid="tests" />
|
||||
</batchtest>
|
||||
</junit>
|
||||
</target>
|
||||
|
||||
<target name="doc" depends="build">
|
||||
<javadoc sourcepath="${src}" classpathref="libraries" access="private" destdir="${doc}" windowtitle="Apollo">
|
||||
<doclet name="org.jboss.apiviz.APIviz" pathref="libraries">
|
||||
<param name="-sourceclasspath" value="${bin}" />
|
||||
<param name="-author" />
|
||||
<param name="-version" />
|
||||
<param name="-use" />
|
||||
<param name="-nopackagediagram" />
|
||||
</doclet>
|
||||
<doctitle><![CDATA[<h1>Apollo</h1>]]></doctitle>
|
||||
<link href="http://download.oracle.com/javase/6/docs/api/" />
|
||||
<link href="http://docs.jboss.org/netty/3.2/api/" />
|
||||
<link href="http://guava-libraries.googlecode.com/svn/trunk/javadoc/" />
|
||||
<link href="http://www.junit.org/apidocs/" />
|
||||
<link href="http://commons.apache.org/compress/apidocs/" />
|
||||
<link href="http://jruby.org/apidocs/" />
|
||||
</javadoc>
|
||||
</target>
|
||||
|
||||
<target name="run" depends="build">
|
||||
<java classpathref="master" fork="true" classname="org.apollo.Server">
|
||||
<arg value="org.apollo.net.release.r${version}.Release${version}" />
|
||||
<jvmarg value="-Xbootclasspath/a:${lib}/jsr166-1.0.0.jar" />
|
||||
</java>
|
||||
</target>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 21 KiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 14 KiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 9.9 KiB |
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ivy-module version="2.0">
|
||||
<info organisation="org.apollo" module="apollo" />
|
||||
<dependencies>
|
||||
<dependency org="org.jboss.netty" name="netty" rev="3.2.6.Final" />
|
||||
<dependency org="org.jruby" name="jruby-complete" rev="1.6.5" />
|
||||
<dependency org="junit" name="junit" rev="4.10" />
|
||||
<dependency org="com.google.guava" name="guava" rev="10.0.1" />
|
||||
<dependency org="org.apache.commons" name="commons-compress" rev="1.1" />
|
||||
<dependency org="java.util.concurrent" name="jsr166" rev="1.0.0" />
|
||||
<dependency org="org.jboss.apiviz" name="apiviz" rev="1.3.1.GA" />
|
||||
</dependencies>
|
||||
</ivy-module>
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ivysettings>
|
||||
<settings defaultResolver="resolvers" />
|
||||
<resolvers>
|
||||
<chain name="resolvers">
|
||||
<filesystem name="local">
|
||||
<artifact pattern="${root}/etc/[module].[ext]" />
|
||||
</filesystem>
|
||||
<url name="maven-r1" m2compatible="true">
|
||||
<artifact pattern="http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
|
||||
</url>
|
||||
<url name="maven-r2" m2compatible="true">
|
||||
<artifact pattern="http://repo2.maven.org/maven2/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
|
||||
</url>
|
||||
<url name="jboss" m2compatible="true">
|
||||
<artifact pattern="http://repository.jboss.org/nexus/content/groups/public-jboss/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
|
||||
</url>
|
||||
<url name="jboss-legacy" m2compatible="true">
|
||||
<artifact pattern="http://repository.jboss.org/maven2/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
|
||||
</url>
|
||||
</chain>
|
||||
</resolvers>
|
||||
</ivysettings>
|
||||
|
||||
Reference in New Issue
Block a user