IF-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>xyz.alexcrea.cuanvil.inventoryframework</groupId> <artifactId>IF-parent</artifactId> <version>0.10.18.2</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>adventure-support</module> <module>inventory-view/iv-abstract-class</module> <module>inventory-view/iv-abstraction</module> <module>inventory-view/iv-interface</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.17.0</adventure.version> </properties> <groupId>xyz.alexcrea.cuanvil.inventoryframework</groupId> <artifactId>IF-parent</artifactId> <version>0.10.18.2</version> <packaging>pom</packaging> <name>IF-CustomAnvil</name> <description>Custom version of IF (https://github.com/stefvanschie/IF) made for CustomAnvil.</description> <url>https://github.com/alexcrea/IF-CustomAnvil</url> <licenses> <license> <name>The Unlicense</name> <url>http://unlicense.org/</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/alexcrea/IF-CustomAnvil.git</url> </scm> <developers> <developer> <name>Stef van Schie</name> <email>stefvanschiedev@gmail.com</email> </developer> <developer> <name>Alexcrea</name> <email>contact@alexcrea.xyz</email> </developer> </developers> <dependencies> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>24.1.0</version> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.5</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.2</version> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit-platform </artifactId> <version>3.5.2</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.0</version> </dependency> </dependencies> </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-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.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.adventure.kyori.net/api/4.10.0/</link> </links> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </project>