189 lines
7.3 KiB
XML
189 lines
7.3 KiB
XML
<?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>com.intellectualsites</groupId>
|
|
<artifactId>cloud</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<modules>
|
|
<module>cloud-jline</module>
|
|
<module>cloud-core</module>
|
|
<module>cloud-pipeline</module>
|
|
<module>cloud-annotations</module>
|
|
<!-- REMOVE THIS -->
|
|
<module>cloud-minecraft/cloud-bukkit-test</module>
|
|
<module>cloud-minecraft/cloud-velocity-test</module>
|
|
<module>cloud-minecraft/cloud-bukkit</module>
|
|
<module>cloud-minecraft/cloud-paper</module>
|
|
<module>cloud-minecraft/cloud-brigadier</module>
|
|
<module>cloud-minecraft/cloud-bungee</module>
|
|
<module>cloud-minecraft/cloud-velocity</module>
|
|
<module>cloud-minecraft/cloud-minecraft-extras</module>
|
|
<module>cloud-minecraft/cloud-cloudburst</module>
|
|
<module>cloud-minecraft/cloud-cloudburst-test</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
<inceptionYear>2020</inceptionYear>
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://raw.githubusercontent.com/Sauilitired/cloud/master/LICENSE</url>
|
|
</license>
|
|
</licenses>
|
|
<name>cloud</name>
|
|
<description>Commands for Java</description>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>intellectualsites</id>
|
|
<name>IntellectualSites</name>
|
|
<url>https://mvn.intellectualsites.com/content/repositories/releases</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>intellectualsites-snapshots</id>
|
|
<name>IntellectualSites Snapshots</name>
|
|
<url>https://mvn.intellectualsites.com/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<!--<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<inherited>false</inherited>
|
|
<executions>
|
|
<execution>
|
|
<id>git submodule update</id>
|
|
<phase>initialize</phase>
|
|
<configuration>
|
|
<executable>git</executable>
|
|
<arguments>
|
|
<argument>submodule</argument>
|
|
<argument>update</argument>
|
|
<argument>-init</argument>
|
|
<argument>-recursive</argument>
|
|
</arguments>
|
|
</configuration>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<configuration>
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>
|
|
initialize
|
|
</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>1.6.8</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default-deploy</id>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>deploy</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<serverId>intellectualsites</serverId>
|
|
<nexusUrl>https://mvn.intellectualsites.com/</nexusUrl>
|
|
<skipStaging>true</skipStaging>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
</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</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>5.7.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|