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:
15
pom.xml
15
pom.xml
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user