commandapi-platforms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.jorel</groupId>
<artifactId>commandapi-platforms</artifactId>
<version>11.2.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> <parent> <artifactId>commandapi</artifactId> <groupId>dev.jorel</groupId> <version>11.2.0</version> </parent> <artifactId>commandapi-platforms</artifactId> <name>Multi-platform support</name> <packaging>pom</packaging> <profiles> <!-- Choose which platforms get built --> <profile> <id>Platform.Bukkit</id> <modules> <module>commandapi-bukkit</module> <module>commandapi-paper</module> <module>commandapi-spigot</module> <module>../commandapi-kotlin/commandapi-kotlin-core</module> <module>../commandapi-kotlin/commandapi-kotlin-bukkit</module> <module>../commandapi-kotlin/commandapi-kotlin-paper</module> <module>../commandapi-kotlin/commandapi-kotlin-spigot</module> </modules> </profile> <profile> <id>Platform.Paper</id> <modules> <module>commandapi-bukkit</module> <module>commandapi-paper</module> <module>../commandapi-kotlin/commandapi-kotlin-core</module> <module>../commandapi-kotlin/commandapi-kotlin-bukkit</module> <module>../commandapi-kotlin/commandapi-kotlin-paper</module> <module>../commandapi-testing/commandapi-testing-paper</module> </modules> </profile> <profile> <id>Platform.Spigot</id> <modules> <module>commandapi-bukkit</module> <module>commandapi-spigot</module> <module>../commandapi-kotlin/commandapi-kotlin-core</module> <module>../commandapi-kotlin/commandapi-kotlin-bukkit</module> <module>../commandapi-kotlin/commandapi-kotlin-spigot</module> <module>../commandapi-testing/commandapi-testing-spigot</module> </modules> </profile> <!-- <profile>--> <!-- <id>Platform.Sponge</id>--> <!-- <modules>--> <!-- <module>commandapi-sponge</module>--> <!-- </modules>--> <!-- </profile>--> <profile> <id>Platform.Velocity</id> <modules> <module>commandapi-velocity</module> <module>../commandapi-kotlin/commandapi-kotlin-core</module> <module>../commandapi-kotlin/commandapi-kotlin-velocity</module> </modules> </profile> </profiles> </project>