uni-dialog
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.projectunified</groupId> <artifactId>uni-dialog</artifactId> <version>1.3.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.projectunified</groupId> <artifactId>uni-dialog</artifactId> <version>1.3.1</version> <packaging>pom</packaging> <modules> <module>core</module> <module>adventure</module> <module>packetevents</module> <module>spigot</module> <module>paper</module> </modules> <name>UniDialog</name> <description>Fluent library to make Minecraft graphical dialogs</description> <url>https://github.com/ProjectUnified/UniDialog</url> <licenses> <license> <name>MIT License</name> <url>https://github.com/ProjectUnified/UniDialog/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>HSGamer</name> <email>huynhqtienvtag@gmail.com</email> <url>https://github.com/HSGamer</url> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/ProjectUnified/UniDialog/issues</url> </issueManagement> <scm> <connection>scm:git:https://github.com/ProjectUnified/UniDialog.git</connection> <developerConnection>scm:git:git@github.com:ProjectUnified/UniDialog.git</developerConnection> <url>https://github.com/ProjectUnified/UniDialog</url> </scm> <properties> <java.version>21</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> <groupId>org.apache.maven.plugins</groupId> <version>3.14.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> <id>attach-sources</id> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <goals> <goal>jar</goal> </goals> <id>attach-javadocs</id> </execution> </executions> <configuration> <outputDirectory>${project.build.directory}/reports</outputDirectory> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>26.0.2</version> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>central</id> <build> <plugins> <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> <configuration> <!-- Prevent `gpg` from using pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </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> <autoPublish>true</autoPublish> <deploymentName>UniDialog</deploymentName> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>