1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-05 23:22:47 +00:00

Add support for derby database

Apache Derby is an simple embeddable SQL database. It stores data in a
plain file.
This commit is contained in:
2011-09-19 15:59:28 -03:00
parent c4052ccb3b
commit 2f5b5fd7e6
4 changed files with 70 additions and 5 deletions

15
pom.xml
View File

@@ -93,9 +93,18 @@
<descriptors>
<descriptor>src/assembly/distribution-mysql5-bin.xml</descriptor>
<descriptor>src/assembly/distribution-h2-bin.xml</descriptor>
<descriptor>src/assembly/distribution-derby-bin.xml</descriptor>
<descriptor>src/assembly/distribution-src.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
@@ -168,6 +177,11 @@
<type>jar</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.8.1.2</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
@@ -234,7 +248,6 @@
<type>jar</type>
<scope>runtime</scope>
</dependency>
<!-- vfs -->
</dependencies>
<repositories>