chatimage-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.chickensaysbak</groupId> <artifactId>chatimage-api</artifactId> <version>3.0.0-1</version> </dependency>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.chickensaysbak</groupId> <artifactId>chatimage</artifactId> <version>3.0.0</version> </parent> <groupId>io.github.chickensaysbak</groupId> <artifactId>chatimage-api</artifactId> <version>3.0.0-1</version> <name>ChatImage API</name> <description>API for sending images in Minecraft with the ChatImage plugin.</description> <url>https://github.com/ChickenSaysBak/ChatImage</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>ChickenSaysBak</name> <email>chickensaybak@gmail.com</email> <organization>GitHub</organization> <organizationUrl>https://github.com/ChickenSaysBak</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/ChickenSaysBak/ChatImage.git</connection> <developerConnection>scm:git:https://github.com/ChickenSaysBak/ChatImage.git</developerConnection> <url>https://github.com/ChickenSaysBak/ChatImage.git</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <release>21</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.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.12.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.github.chickensaysbak</groupId> <artifactId>chatimage-core</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>net.kyori</groupId> <artifactId>adventure-text-minimessage</artifactId> <version>4.24.0</version> </dependency> </dependencies> </project>