1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-06 07:32:46 +00:00

Implements server version modularization

Now each server server has an maven module which implements changes to
the default behavior within the "core" gameserver module. This allows to
keep multiple server versions without the need of several branches and
with little code duplication.
This commit is contained in:
2012-03-24 19:14:53 -03:00
parent 64368df8b3
commit ef39f3c67e
604 changed files with 17445 additions and 8677 deletions

View File

@@ -21,7 +21,7 @@
</dependency>
<dependency>
<groupId>com.l2jserver</groupId>
<artifactId>l2jserver2-gameserver</artifactId>
<artifactId>l2jserver2-gameserver-core</artifactId>
<version>0.0.2-SNAPSHOT</version>
</dependency>
</dependencies>

View File

@@ -36,9 +36,6 @@ import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.MarshalException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.SchemaOutputResolver;
import javax.xml.transform.Result;
import javax.xml.transform.stream.StreamResult;
import org.apache.commons.io.FileUtils;

View File

@@ -18,6 +18,7 @@ package com.l2jserver.tool;
import com.l2jserver.model.template.character.CharacterClass;
public class CharacterSQLEnumGenerator {
public static void main(String[] args) {
System.out.println("== 'Character' SQL STATEMENT ==");

View File

@@ -19,6 +19,7 @@ package com.l2jserver.tool;
import com.l2jserver.model.template.character.CharacterClass;
public class PacketSamuraiCharacterClassEnum {
public static void main(String[] args) {
System.out.println(createClassStatement());

View File

@@ -20,7 +20,7 @@ import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import com.l2jserver.game.net.SystemMessage;
import com.l2jserver.service.network.model.SystemMessage;
public class PacketSamuraiSystemMessageEnumGenerator {
public static void main(String[] args) throws IOException {

View File

@@ -18,6 +18,7 @@ package com.l2jserver.tool.conversor.itemtemplate;
import com.l2jserver.model.template.item.ItemMaterial;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*

View File

@@ -18,6 +18,7 @@ package com.l2jserver.tool.conversor.itemtemplate;
import com.l2jserver.model.template.item.ItemType;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*