mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-30 14:03:21 +01:00
Include ORMlite for SQL management
This commit is contained in:
parent
4c65fbf9ef
commit
03320b7db6
21
pom.xml
21
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>com.acrobot.chestshop</groupId>
|
<groupId>com.acrobot.chestshop</groupId>
|
||||||
<artifactId>chestshop</artifactId>
|
<artifactId>chestshop</artifactId>
|
||||||
<version>3.7.8</version>
|
<version>3.7.9</version>
|
||||||
<description>Chest-and-sign shop plugin for Bukkit</description>
|
<description>Chest-and-sign shop plugin for Bukkit</description>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>bukkit-repo</id>
|
<id>bukkit-repo</id>
|
||||||
<url>http://repo.bukkit.org/content/repositories/releases/</url>
|
<url>http://repo.bukkit.org/content/repositories/snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>sk89q-repo</id>
|
<id>sk89q-repo</id>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>vault-repo</id>
|
<id>vault-repo</id>
|
||||||
<url>http://ci.herocraftonline.com/plugin/repository/everything</url>
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>gravity-repo</id>
|
<id>gravity-repo</id>
|
||||||
@ -50,10 +50,16 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.j256.ormlite</groupId>
|
||||||
|
<artifactId>ormlite-jdbc</artifactId>
|
||||||
|
<version>4.48</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.6.4-R2.0</version>
|
<version>1.7.5-R0.1-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mcstats.bukkit</groupId>
|
<groupId>org.mcstats.bukkit</groupId>
|
||||||
@ -152,6 +158,7 @@
|
|||||||
<includes>
|
<includes>
|
||||||
<include>org.mcstats.bukkit</include>
|
<include>org.mcstats.bukkit</include>
|
||||||
<include>net.gravitydevelopment.updater</include>
|
<include>net.gravitydevelopment.updater</include>
|
||||||
|
<include>com.j256.ormlite</include>
|
||||||
</includes>
|
</includes>
|
||||||
</artifactSet>
|
</artifactSet>
|
||||||
<relocations>
|
<relocations>
|
||||||
@ -161,7 +168,11 @@
|
|||||||
</relocation>
|
</relocation>
|
||||||
<relocation>
|
<relocation>
|
||||||
<pattern>net.gravitydevelopment.updater</pattern>
|
<pattern>net.gravitydevelopment.updater</pattern>
|
||||||
<shadedPattern>com.Acrobot.ChestShop</shadedPattern>
|
<shadedPattern>com.Acrobot.ChestShop.Updater</shadedPattern>
|
||||||
|
</relocation>
|
||||||
|
<relocation>
|
||||||
|
<pattern>com.j256.ormlite</pattern>
|
||||||
|
<shadedPattern>com.Acrobot.ChestShop.ORMlite</shadedPattern>
|
||||||
</relocation>
|
</relocation>
|
||||||
</relocations>
|
</relocations>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.Acrobot.ChestShop.Database;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Andrzej Pomirski (Acrobot)
|
||||||
|
*/
|
||||||
|
public class Account {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.Acrobot.ChestShop.Database;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Andrzej Pomirski (Acrobot)
|
||||||
|
*/
|
||||||
|
public class ConnectionManager {
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user