UltimateChat
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.fabiozumbi12.UltimateChat</groupId> <artifactId>UltimateChat</artifactId> <version>1.9.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright @FabioZumbi12 This class is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this class. Permission is granted to anyone to use this class for any purpose, including commercial plugins, and to alter it and redistribute it freely, subject to the following restrictions: 1 - The origin of this class must not be misrepresented; you must not claim that you wrote the original software. If you use this class in other plugins, an acknowledgment in the plugin documentation would be appreciated but is not required. 2 - Altered source versions must be plainly marked as such, and must not be misrepresented as being the original class. 3 - This notice may not be removed or altered from any source distribution. Esta classe é fornecida "como está", sem qualquer garantia expressa ou implícita. Em nenhum caso os autores serão responsabilizados por quaisquer danos decorrentes do uso desta classe. É concedida permissão a qualquer pessoa para usar esta classe para qualquer finalidade, incluindo plugins pagos, e para alterá-lo e redistribuí-lo livremente, sujeito às seguintes restrições: 1 - A origem desta classe não deve ser deturpada; você não deve afirmar que escreveu a classe original. Se você usar esta classe em um plugin, uma confirmação de autoria na documentação do plugin será apreciada, mas não é necessária. 2 - Versões de origem alteradas devem ser claramente marcadas como tal e não devem ser deturpadas como sendo a classe original. 3 - Este aviso não pode ser removido ou alterado de qualquer distribuição de origem. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>io.github.fabiozumbi12.UltimateChat</groupId> <artifactId>UltimateChat</artifactId> <packaging>pom</packaging> <name>UltimateChat</name> <version>1.9.3</version> <description>Ultimate Chat is an advanced chat hooking into most used plugins to show more info on player chat. </description> <url>https://github.com/FabioZumbi12/RedProtect</url> <licenses> <license> <name>GNU General Public License v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> <comments>Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.</comments> </license> </licenses> <developers> <developer> <name>Fabio F. Magalhães</name> <url>https://github.com/FabioZumbi12</url> </developer> </developers> <repositories> <!-- Spigot repos --> <repository> <id>paper-repo</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>placeholderapi</id> <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> </repository> <repository> <id>dmulloy2-repo</id> <url>https://repo.dmulloy2.net/nexus/repository/public/</url> </repository> <!-- bungee repo --> <repository> <id>bungeecord-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> <!-- EssentialsX repo --> <repository> <id>EssentialsX-Vault</id> <url>https://ci.ender.zone/plugin/repository/everything/</url> </repository> <!-- Marriage repo --> <repository> <id>Marriage</id> <url>https://ci.lucko.me/plugin/repository/everything</url> </repository> </repositories> <!-- Jedis --> <dependencies> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>5.1.3</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> <version>2.12.1</version> </dependency> </dependencies> <scm> <connection>scm:git:git@github.com:FabioZumbi12/UltimateChat.git</connection> <url>https://github.com/FabioZumbi12/UltimateChat/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> <build> <finalName>${project.name}-${project.version}</finalName> <resources> <resource> <targetPath>.</targetPath> <filtering>true</filtering> <directory>src/main/resources/</directory> </resource> </resources> <plugins> <!-- Parse Version to plugin.yml --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.10</version> <executions> <execution> <id>parse-version</id> <goals> <goal>parse-version</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>filter-src</id> <goals> <goal>filter-sources</goal> </goals> </execution> </executions> </plugin> <!-- sign packages to sonatype deploy https://central.sonatype.org/publish/publish-maven/#distribution-management-and-authentication --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>spigot-plugins</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Deploy to maven central for maven repo --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> </configuration> </plugin> <!-- Javadoc and sources for sonatype deploy --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <github.global.server>github-user</github.global.server> </properties> <modules> <module>UltimateFancy</module> <!--<module>UltimateChat-JDA</module>--> <module>UltimateChat-Spigot</module> <module>UltimateChat-Bungee</module> <module>UltimateChat-Velocity</module> </modules> </project>