mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-23 03:24:38 +00:00
changed command context to be a member instead of user, commands are only supported within guilds added custom exception templating for the error message added error message in case the parameters for a command were too little added support for templates on command help descriptions added post execution to be executed to print exception messages refactored command handling to be able to support exceptions added user and userInServer management
22 lines
772 B
XML
22 lines
772 B
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">
|
|
<parent>
|
|
<groupId>dev.sheldan.abstracto.modules</groupId>
|
|
<artifactId>moderation</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>moderation-impl</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>dev.sheldan.abstracto.modules</groupId>
|
|
<artifactId>moderation-int</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |