parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.cerus.maps</groupId>
<artifactId>parent</artifactId>
<version>3.8.12</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>dev.cerus.maps</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>3.8.12</version>
<modules>
<module>common</module>
<module>bukkit-16_R3</module>
<module>bukkit-17_R1</module>
<module>bukkit-18_R1</module>
<module>bukkit-18_R2</module>
<module>bukkit-19_R1</module>
<module>bukkit-19_R2</module>
<module>bukkit-19_R3</module>
<module>bukkit-20_R1</module>
<module>bukkit-20_R2</module>
<module>bukkit-20_R3</module>
<module>bukkit-20_R4</module>
<module>bukkit-21_R1</module>
<module>bukkit-21_R2</module>
<module>bukkit-21_R3</module>
<module>bukkit-21_R4</module>
<module>bukkit-21_R5</module>
<module>plugin</module>
</modules>
<name>${artifactId}</name>
<description>maps is a simple Spigot plugin and api for creating clientside maps and map screens.</description>
<url>https://github.com/cerus/maps</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>cerus</id>
<name>Maximilian Dorn</name>
<email>business@cerus.dev</email>
<url>https://cerus.dev</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/cerus/maps.git</connection>
<developerConnection>scm:git:ssh://github.com:cerus/maps.git</developerConnection>
<url>http://github.com/cerus/maps/tree/main</url>
</scm>
<properties>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>16</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- <distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>-->
<build>
<plugins>
<!-- <plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.14</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</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>
<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-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.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.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<executable>${gpg.executable}</executable>
<keyname>${gpg.keyname}</keyname>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>