mc-server-updater
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.projectunified</groupId> <artifactId>mc-server-updater</artifactId> <version>4.0.0</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>mc-server-updater</artifactId> <packaging>pom</packaging> <version>4.0.0</version> <modules> <module>lib</module> <module>standalone</module> </modules> <name>MCServerUpdater</name> <description>A program to update Minecraft server jar</description> <url>https://github.com/ProjectUnified/MCServerUpdater</url> <licenses> <license> <name>MIT License</name> <url>https://github.com/ProjectUnified/MCServerUpdater/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/MCServerUpdater/issues</url> </issueManagement> <scm> <connection>scm:git:https://github.com/ProjectUnified/MCServerUpdater.git</connection> <developerConnection>scm:git:git@github.com:ProjectUnified/MCServerUpdater.git</developerConnection> <url>https://github.com/ProjectUnified/MCServerUpdater</url> </scm> <properties> <java.version>1.8</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> <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>MCServerUpdater</deploymentName> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>