revert broken maven features
This commit is contained in:
parent
6e3fa6957f
commit
594d4f7b30
235
pom.xml
235
pom.xml
@ -52,7 +52,6 @@
|
|||||||
<!-- Project Properties -->
|
<!-- Project Properties -->
|
||||||
<pluginName>AuthMe</pluginName>
|
<pluginName>AuthMe</pluginName>
|
||||||
<mainClass>fr.xephi.authme.AuthMe</mainClass>
|
<mainClass>fr.xephi.authme.AuthMe</mainClass>
|
||||||
<buildNumber>-1</buildNumber>
|
|
||||||
<pluginAuthors>Xephi, sgdc3, DNx5, timvisee, games647, ljacqu</pluginAuthors>
|
<pluginAuthors>Xephi, sgdc3, DNx5, timvisee, games647, ljacqu</pluginAuthors>
|
||||||
|
|
||||||
<!-- Change Compiler Version (JDK) HERE! -->
|
<!-- Change Compiler Version (JDK) HERE! -->
|
||||||
@ -62,20 +61,6 @@
|
|||||||
<bukkitVersion>1.8.8-R0.1-SNAPSHOT</bukkitVersion>
|
<bukkitVersion>1.8.8-R0.1-SNAPSHOT</bukkitVersion>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<profiles>
|
|
||||||
<profile>
|
|
||||||
<id>jenkins</id>
|
|
||||||
<activation>
|
|
||||||
<property>
|
|
||||||
<name>env.BUILD_NUMBER</name>
|
|
||||||
</property>
|
|
||||||
</activation>
|
|
||||||
<properties>
|
|
||||||
<buildNumber>${env.BUILD_NUMBER}</buildNumber>
|
|
||||||
</properties>
|
|
||||||
</profile>
|
|
||||||
</profiles>
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>AuthMe-${project.version}</finalName>
|
<finalName>AuthMe-${project.version}</finalName>
|
||||||
<sourceDirectory>src/main/java</sourceDirectory>
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||||||
@ -127,39 +112,6 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
|
||||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
||||||
<artifactId>replacer</artifactId>
|
|
||||||
<version>1.5.3</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>generate-sources</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>replace</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<includes>
|
|
||||||
<include>target/classes/**/AuthMe.java</include>
|
|
||||||
</includes>
|
|
||||||
<replacements>
|
|
||||||
<replacement>
|
|
||||||
<token>${project.version}</token>
|
|
||||||
<value>${project.version}</value>
|
|
||||||
</replacement>
|
|
||||||
<replacement>
|
|
||||||
<token>${buildNumber}</token>
|
|
||||||
<value>${buildNumber}</value>
|
|
||||||
</replacement>
|
|
||||||
<replacement>
|
|
||||||
<token>${pluginAuthors}</token>
|
|
||||||
<value>${pluginAuthors}</value>
|
|
||||||
</replacement>
|
|
||||||
</replacements>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
|
|
||||||
<!-- TODO: we need also to relocate the other libs -->
|
<!-- TODO: we need also to relocate the other libs -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
@ -272,12 +224,19 @@
|
|||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>slf4j-api</artifactId>
|
||||||
<groupId>*</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-jdk14</artifactId>
|
||||||
|
<version>1.7.12</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Log4J Logger (required by the console filter) -->
|
<!-- Log4J Logger (required by the console filter) -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -324,8 +283,8 @@
|
|||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<groupId>org.bukkit</groupId>
|
||||||
<groupId>*</groupId>
|
<artifactId>bukkit</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
@ -367,8 +326,12 @@
|
|||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>cglib-nodep</artifactId>
|
||||||
<groupId>*</groupId>
|
<groupId>cglib</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>BukkitExecutors</artifactId>
|
||||||
|
<groupId>com.comphenix.executors</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
@ -381,8 +344,20 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<groupId>org.bukkit</groupId>
|
||||||
<groupId>*</groupId>
|
<artifactId>bukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>net.gravitydevelopment.updater</groupId>
|
||||||
|
<artifactId>updater</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>commons-dbcp</artifactId>
|
||||||
|
<groupId>commons-dbcp</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>AccountsClient</artifactId>
|
||||||
|
<groupId>com.mojang</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
@ -431,8 +406,12 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<groupId>org.bukkit</groupId>
|
||||||
<groupId>*</groupId>
|
<artifactId>bukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>craftbukkit</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
@ -447,8 +426,44 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>*</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>craftbukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>AllPay</artifactId>
|
||||||
|
<groupId>com.fernferret.allpay</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>VaultAPI</artifactId>
|
||||||
|
<groupId>net.milkbowl.vault</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CommandHandler</artifactId>
|
||||||
|
<groupId>com.pneumaticraft.commandhandler</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>SerializationConfig</artifactId>
|
||||||
|
<groupId>me.main__.util</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>Logging</artifactId>
|
||||||
|
<groupId>com.dumptruckman.minecraft</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>metrics</artifactId>
|
||||||
|
<groupId>org.mcstats.bukkit</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>buscript</artifactId>
|
||||||
|
<groupId>com.dumptruckman.minecraft</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<groupId>junit</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
@ -462,8 +477,8 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>*</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
@ -477,8 +492,68 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<groupId>org.bukkit</groupId>
|
||||||
<groupId>*</groupId>
|
<artifactId>bukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>craftbukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusHook</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusFactions-v1_6</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusCompat-v1_7_R3</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusFactions-v1_8</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusCompat-v1_7_R4</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusWG-v5</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusWG-v6</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusCompat-API</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusFactions-v2_6</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusCompat-v1_8_R3</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusFactions-v2_7</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusCompat-v1_8_R2</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>CombatTagPlusCompat-v1_8_R1</artifactId>
|
||||||
|
<groupId>net.minelink</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>metrics-lite</artifactId>
|
||||||
|
<groupId>org.mcstats.bukkit</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
@ -492,8 +567,36 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<artifactId>*</artifactId>
|
<groupId>org.bukkit</groupId>
|
||||||
<groupId>*</groupId>
|
<artifactId>bukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>craftbukkit</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>updater</artifactId>
|
||||||
|
<groupId>net.gravitydevelopment.updater</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>EssentialsGroupManager</artifactId>
|
||||||
|
<groupId>net.ess3</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>PermissionsEx</artifactId>
|
||||||
|
<groupId>ru.tehkode</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>AccountsClient</artifactId>
|
||||||
|
<groupId>com.mojang</groupId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<artifactId>log4j-core</artifactId>
|
||||||
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
|
|||||||
@ -3,7 +3,7 @@ authors: [${pluginAuthors}]
|
|||||||
website: ${project.url}
|
website: ${project.url}
|
||||||
description: ${project.description}
|
description: ${project.description}
|
||||||
main: ${mainClass}
|
main: ${mainClass}
|
||||||
version: ${project.version} b${env.BUILD_NUMBER}
|
version: ${project.version}-b${env.BUILD_NUMBER}
|
||||||
softdepend:
|
softdepend:
|
||||||
- Vault
|
- Vault
|
||||||
- PermissionsBukkit
|
- PermissionsBukkit
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user