CI / build (push) Successful in 11m50s
Trois nouveaux ecrans GUI navigables depuis /votemenu : - Menu principal : tete du joueur + progression VoteParty, boutons vers le menu de vote, la reclamation et (ops) l'administration. - Menu de reclamation : equivalent visuel de /claim, affiche le nombre de votes en attente (resolu en async) et permet de les reclamer d'un clic. - Menu d'administration (permission votenetwork.admin) : bascule le mode maintenance sans passer par la commande texte. Extraction de la logique de reclamation dans ClaimAction, partagee entre /claim et le menu visuel. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
80 lines
2.6 KiB
XML
80 lines
2.6 KiB
XML
<?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>
|
|
|
|
<groupId>fr.votenetwork</groupId>
|
|
<artifactId>votenetwork-parent</artifactId>
|
|
<version>1.0.2</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>velocity</module>
|
|
<module>spigot</module>
|
|
</modules>
|
|
|
|
<name>VoteNetwork</name>
|
|
<description>Systeme de vote reseau Velocity + Spigot/Paper</description>
|
|
<url>https://gitea.louconnect.fr/Sar_Tron/VoteNetwork</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Sar_Tron</name>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<hikaricp.version>5.1.0</hikaricp.version>
|
|
<mysql.version>8.0.33</mysql.version>
|
|
<junit.version>5.10.2</junit.version>
|
|
<mockito.version>5.11.0</mockito.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sonatype</id>
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.13.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.2.5</version>
|
|
<configuration>
|
|
<argLine>-Dnet.bytebuddy.experimental=true</argLine>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|