MiniMessage
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.minidigger</groupId> <artifactId>MiniMessage</artifactId> <version>2.1.0</version> </dependency>
<?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>me.minidigger</groupId> <artifactId>MiniMessage</artifactId> <packaging>pom</packaging> <version>2.1.0</version> <name>MiniMessage</name> <description>Simple library that implements an easy to use textual format to send rich json messages.</description> <url>https://github.com/MiniDigger/MiniMessage</url> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <modules> <module>minimessage-text</module> <module>minimessage-bungee</module> <module>minimessage-ext-markdown</module> </modules> <repositories> <repository> <id>papermc</id> <url>https://papermc.io/repo/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <releaseProfiles>deploy</releaseProfiles> <!-- paper doesnt do releases --> <allowTimestampedSnapshots>true</allowTimestampedSnapshots> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <activation> <property> <name>deploy</name> </property> </activation> <build> <defaultGoal>clean deploy</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--batch</arg> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> </profiles> <scm> <connection>scm:git:https://github.com/MiniDigger/MiniMessage.git</connection> <developerConnection>scm:git:https://github.com/MiniDigger/MiniMessage.git</developerConnection> <url>https://github.com/MiniDigger/MiniMessage</url> <tag>MiniMessage-2.1.0</tag> </scm> <licenses> <license> <name>MIT</name> <url>https://github.com/MiniDigger/MiniMessage/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>MiniDigger</name> <email>admin@minidigger.me</email> <roles> <role>Maintainer</role> </roles> </developer> </developers> <distributionManagement> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>