IF-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.stefvanschie.inventoryframework</groupId>
<artifactId>IF-parent</artifactId>
<version>0.12.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>
<modules>
<module>IF</module>
<module>nms/abstraction</module>
<module>nms/1_21_11</module>
<module>nms/1_21_9-10</module>
<module>nms/1_21_6-8</module>
<module>nms/1_21_5</module>
<module>nms/1_21_4</module>
<module>nms/1_21_2-3</module>
<module>nms/1_21_1</module>
<module>nms/1_21_0</module>
<module>nms/1_20_6</module>
<module>nms/1_20_5</module>
<module>nms/1_20_3-4</module>
<module>nms/1_20_2</module>
<module>nms/1_20_1</module>
<module>nms/1_20_0</module>
<module>nms/1_19_4</module>
<module>nms/1_18_2</module>
<module>nms/1_17_1</module>
<module>nms/1_16_5</module>
<module>adventure-support</module>
<module>inventory-view/iv-abstract-class</module>
<module>inventory-view/iv-abstraction</module>
<module>inventory-view/iv-interface</module>
<module>nms/26_1</module>
</modules>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.deploy.skip>true</maven.deploy.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<adventure.version>4.26.1</adventure.version>
</properties>
<groupId>com.github.stefvanschie.inventoryframework</groupId>
<artifactId>IF-parent</artifactId>
<version>0.12.0</version>
<packaging>pom</packaging>
<name>IF</name>
<description>An inventory framework for managing GUIs</description>
<url>https://github.com/stefvanschie/IF</url>
<licenses>
<license>
<name>The Unlicense</name>
<url>http://unlicense.org/</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/stefvanschie/IF.git</url>
</scm>
<developers>
<developer>
<name>Stef van Schie</name>
<email>stefvanschiedev@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2-1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>central</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>deploy</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>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit-platform </artifactId>
<version>3.5.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>6.0.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</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.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>https://hub.spigotmc.org/javadocs/bukkit/</link>
<link>https://jd.advntr.dev/api/${adventure.version}/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
</project>