mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-12-23 00:57:35 +01:00
Update pom.xml
This commit is contained in:
parent
cf5c76f353
commit
3f28f8e233
355
pom.xml
355
pom.xml
@ -1,138 +1,229 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>fr.xephi.authme.AuthMe</groupId>
|
<groupId>fr.xephi.authme.AuthMe</groupId>
|
||||||
<artifactId>AuthMe</artifactId>
|
<artifactId>AuthMe</artifactId>
|
||||||
<packaging>jar</packaging>
|
|
||||||
<name>AuthMe</name>
|
|
||||||
<properties>
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
||||||
</properties>
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>2.5</version>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifestFile>${manifest.file}</manifestFile>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
<version>5.0-SNAPSHOT</version>
|
<version>5.0-SNAPSHOT</version>
|
||||||
|
|
||||||
|
<name>AuthMeReloaded</name>
|
||||||
|
<description>/login /register plugin for Bukkit!</description>
|
||||||
|
<url>http://dev.bukkit.org/bukkit-plugins/authme-reloaded/</url>
|
||||||
|
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.source>1.7</maven.compiler.source>
|
||||||
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||||||
|
<bukkitVersion>1.8.7-R0.1-SNAPSHOT</bukkitVersion>
|
||||||
|
<mainClass>${project.groupId}.${project.artifactId}</mainClass>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<ciManagement>
|
||||||
|
<system>jenkins</system>
|
||||||
|
<url>http://ci.xephi.fr</url>
|
||||||
|
</ciManagement>
|
||||||
|
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/Xephi/AuthMeReloaded/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
|
||||||
|
<!-- Non Maven Dependencies download -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>download-files</id>
|
||||||
|
<phase>prepare-package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>run</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<target>
|
||||||
|
<!-- download file -->
|
||||||
|
<get src="http://dev.bukkit.org/media/files/881/956/ChestShop.jar"
|
||||||
|
dest="${project.build.directory}/libs/"
|
||||||
|
verbose="false"
|
||||||
|
usetimestamp="true"/>
|
||||||
|
<get src="https://github.com/sgdc3/NonMavenPluginsRepo/raw/master/xAuth2.0.26.jar"
|
||||||
|
dest="${project.build.directory}/libs/"
|
||||||
|
verbose="false"
|
||||||
|
usetimestamp="true"/>
|
||||||
|
<get src="http://dev.bukkit.org/media/files/767/798/Notifications.jar"
|
||||||
|
dest="${project.build.directory}/libs/"
|
||||||
|
verbose="false"
|
||||||
|
usetimestamp="true"/>
|
||||||
|
</target>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.5</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifestFile>${manifest.file}</manifestFile>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>spigot-repo</id>
|
||||||
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>vault-repo</id>
|
||||||
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>everything</id>
|
||||||
|
<url>http://repo.citizensnpcs.co</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>onarandombox</id>
|
||||||
|
<url>http://repo.onarandombox.com/content/groups/public</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>ess-repo</id>
|
||||||
|
<url>https://ci.drtshock.net/plugin/repository/everything/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>minelink-thirdparty</id>
|
||||||
|
<url>http://repo.minelink.net/content/repositories/public</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>techcable-repo</id>
|
||||||
|
<url>http://repo.techcable.net/content/repositories/snapshots/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bukkit-plugins-releases</id>
|
||||||
|
<name>repo.luricos.de releases</name>
|
||||||
|
<url>http://repo.luricos.de/content/repositories/releases/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-releases</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/releases</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
<updatePolicy>always</updatePolicy>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
|
||||||
<groupId>org.spigotmc</groupId>
|
<!-- Remote dependencies -->
|
||||||
<artifactId>spigot</artifactId>
|
|
||||||
<version>1.8.3</version>
|
<dependency>
|
||||||
<scope>system</scope>
|
<groupId>mysql</groupId>
|
||||||
<systemPath>${project.basedir}/lib/Spigot.jar</systemPath>
|
<artifactId>mysql-connector-java</artifactId>
|
||||||
</dependency>
|
<version>LATEST</version>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>net.milkbowl.vault</groupId>
|
<dependency>
|
||||||
<artifactId>Vault</artifactId>
|
<groupId>org.xerial</groupId>
|
||||||
<version>1.5.3</version>
|
<artifactId>sqlite-jdbc</artifactId>
|
||||||
<scope>system</scope>
|
<version>LATEST</version>
|
||||||
<systemPath>${project.basedir}/lib/Vault.jar</systemPath>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>com.h2</groupId>
|
||||||
<groupId>net.citizensnpcs</groupId>
|
<artifactId>h2</artifactId>
|
||||||
<artifactId>citizensapi</artifactId>
|
<version>LATEST</version>
|
||||||
<version>2.0.13-SNAPSHOT</version>
|
</dependency>
|
||||||
<scope>system</scope>
|
<dependency>
|
||||||
<systemPath>${project.basedir}/lib/citizensapi-2.0.13-SNAPSHOT.jar</systemPath>
|
<groupId>org.spigotmc</groupId>
|
||||||
</dependency>
|
<artifactId>spigot-api</artifactId>
|
||||||
<dependency>
|
<version>${bukkitVersion}</version>
|
||||||
<groupId>net.citizensnpcs</groupId>
|
</dependency>
|
||||||
<artifactId>Citizens</artifactId>
|
<dependency>
|
||||||
<version>1.2.1</version>
|
<groupId>net.milkbowl.vault</groupId>
|
||||||
<scope>system</scope>
|
<artifactId>Vault</artifactId>
|
||||||
<systemPath>${project.basedir}/lib/Citizens.jar</systemPath>
|
<version>1.5.4</version>
|
||||||
</dependency>
|
<scope>provided</scope>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>org.getspout</groupId>
|
<dependency>
|
||||||
<artifactId>spoutapi</artifactId>
|
<groupId>net.citizensnpcs</groupId>
|
||||||
<version>1.6.4-SNAPSHOT</version>
|
<artifactId>citizensapi</artifactId>
|
||||||
<scope>system</scope>
|
<version>2.0.16-SNAPSHOT</version>
|
||||||
<systemPath>${project.basedir}/lib/SpoutPlugin.jar</systemPath>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.trc202</groupId>
|
<groupId>net.citizensnpcs</groupId>
|
||||||
<artifactId>CombatTag</artifactId>
|
<artifactId>citizens</artifactId>
|
||||||
<version>5.4</version>
|
<version>2.0.16-SNAPSHOT</version>
|
||||||
<scope>system</scope>
|
<scope>provided</scope>
|
||||||
<systemPath>${project.basedir}/lib/CombatTag-5.4.jar</systemPath>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
<dependency>
|
<groupId>com.onarandombox</groupId>
|
||||||
<groupId>mysql</groupId>
|
<artifactId>MultiverseCore</artifactId>
|
||||||
<artifactId>mysql-connector-java</artifactId>
|
<version>2.5</version>
|
||||||
<version>5.1.6</version>
|
</dependency>
|
||||||
<scope>system</scope>
|
<dependency>
|
||||||
<systemPath>${project.basedir}/lib/mysql-connector-java.jar</systemPath>
|
<groupId>net.ess3</groupId>
|
||||||
</dependency>
|
<artifactId>EssentialsX</artifactId>
|
||||||
<dependency>
|
<version>2.0.1-SNAPSHOT</version>
|
||||||
<groupId>org.xerial</groupId>
|
</dependency>
|
||||||
<artifactId>sqlite-jdbc</artifactId>
|
<dependency>
|
||||||
<version>3.7.2</version>
|
<groupId>net.minelink</groupId>
|
||||||
<scope>system</scope>
|
<artifactId>CombatTagPlus</artifactId>
|
||||||
<systemPath>${project.basedir}/lib/sqlite-jdbc.jar</systemPath>
|
<version>1.2.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>me.muizers</groupId>
|
<groupId>com.trc202</groupId>
|
||||||
<artifactId>Notifications</artifactId>
|
<artifactId>combattag</artifactId>
|
||||||
<version>1.6</version>
|
<version>6.4.1-SNAPSHOT</version>
|
||||||
<scope>system</scope>
|
</dependency>
|
||||||
<systemPath>${project.basedir}/lib/Notifications.jar</systemPath>
|
<dependency>
|
||||||
</dependency>
|
<groupId>de.luricos.bukkit</groupId>
|
||||||
<dependency>
|
<artifactId>xAuth</artifactId>
|
||||||
<groupId>com.Acrobot</groupId>
|
<version>2.6</version>
|
||||||
<artifactId>ChestShop</artifactId>
|
</dependency>
|
||||||
<version>3.7.9</version>
|
<dependency>
|
||||||
<scope>system</scope>
|
<groupId>org.spoutcraft</groupId>
|
||||||
<systemPath>${project.basedir}/lib/ChestShop.jar</systemPath>
|
<artifactId>spoutplugin</artifactId>
|
||||||
</dependency>
|
<version>1.6.4-SNAPSHOT</version>
|
||||||
<dependency>
|
</dependency>
|
||||||
<groupId>com.h2</groupId>
|
|
||||||
<artifactId>h2</artifactId>
|
<!-- Wget Dependencies -->
|
||||||
<version>1.3.164</version>
|
|
||||||
<scope>system</scope>
|
<dependency>
|
||||||
<systemPath>${project.basedir}/lib/h2-1.3.164.jar</systemPath>
|
<groupId>com.Acrobot</groupId>
|
||||||
</dependency>
|
<artifactId>ChestShop</artifactId>
|
||||||
<dependency>
|
<version>3.8.10</version>
|
||||||
<groupId>com.cypherx</groupId>
|
<scope>system</scope>
|
||||||
<artifactId>xauth</artifactId>
|
<systemPath>${project.basedir}/libs/ChestShop.jar</systemPath>
|
||||||
<version>2.0.26</version>
|
</dependency>
|
||||||
<scope>system</scope>
|
<dependency>
|
||||||
<systemPath>${project.basedir}/lib/xAuth.jar</systemPath>
|
<groupId>com.cypherx</groupId>
|
||||||
</dependency>
|
<artifactId>xauth</artifactId>
|
||||||
<dependency>
|
<version>2.0.26</version>
|
||||||
<groupId>de.luricos.bukkit</groupId>
|
<scope>system</scope>
|
||||||
<artifactId>xAuth</artifactId>
|
<systemPath>${project.basedir}/lib/xAuth.jar</systemPath>
|
||||||
<version>2.4.4</version>
|
</dependency>
|
||||||
<scope>system</scope>
|
<dependency>
|
||||||
<systemPath>${project.basedir}/lib/xAuth-2.4.4.jar</systemPath>
|
<groupId>me.muizers</groupId>
|
||||||
</dependency>
|
<artifactId>Notifications</artifactId>
|
||||||
<dependency>
|
<version>1.6</version>
|
||||||
<groupId>com.onarandombox</groupId>
|
<scope>system</scope>
|
||||||
<artifactId>MultiverseCore</artifactId>
|
<systemPath>${project.basedir}/libs/Notifications.jar</systemPath>
|
||||||
<version>2.5-b654</version>
|
</dependency>
|
||||||
<scope>system</scope>
|
|
||||||
<systemPath>${project.basedir}/lib/Multiverse-Core-2.5.jar</systemPath>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.earth2me.essentials</groupId>
|
|
||||||
<artifactId>Essentials</artifactId>
|
|
||||||
<version>2.13.1</version>
|
|
||||||
<scope>system</scope>
|
|
||||||
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.minelink</groupId>
|
|
||||||
<artifactId>CombatTagPlus</artifactId>
|
|
||||||
<version>1.1.2-SNAPSHOT</version>
|
|
||||||
<scope>system</scope>
|
|
||||||
<systemPath>${project.basedir}/lib/CombatTagPlus.jar</systemPath>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
Reference in New Issue
Block a user