Greenhouses/pom.xml

289 lines
11 KiB
XML
Raw Normal View History

2019-01-19 16:52:04 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2019-07-07 23:40:36 +02:00
<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>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<groupId>world.bentobox</groupId>
<artifactId>Greenhouses</artifactId>
<version>${revision}</version>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<name>Greenhouses</name>
<description>Greenhouses is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like ASkyBlock or AcidIsland.</description>
<url>https://github.com/BentoBoxWorld/Greenhouses</url>
<inceptionYear>2019</inceptionYear>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<scm>
<connection>scm:git:https://github.com/BentoBoxWorld/Greenhouses.git</connection>
<developerConnection>scm:git:git@github.com:BentoBoxWorld/Greenhouses.git</developerConnection>
<url>https://github.com/BentoBoxWorld/Greenhouses</url>
</scm>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<ciManagement>
<system>jenkins</system>
<url>http://ci.codemc.org/job/BentoBoxWorld/job/Greenhouses</url>
</ciManagement>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<issueManagement>
<system>GitHub</system>
<url>https://github.com/BentoBoxWorld/Greenhouses/issues</url>
</issueManagement>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<distributionManagement>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.org/repository/maven-snapshots</url>
</snapshotRepository>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.org/repository/maven-releases</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2022-12-29 18:56:49 +01:00
<java.version>17</java.version>
2021-08-01 08:10:07 +02:00
<powermock.version>2.0.9</powermock.version>
2019-07-07 23:40:36 +02:00
<!-- More visible way how to change dependency versions -->
2024-01-13 18:29:53 +01:00
<spigot.version>1.20.4-R0.1-SNAPSHOT</spigot.version>
2023-11-12 22:53:05 +01:00
<bentobox.version>2.0.0-SNAPSHOT</bentobox.version>
2019-07-07 23:40:36 +02:00
<!-- Revision variable removes warning about dynamic version -->
<revision>${build.version}-SNAPSHOT</revision>
<!-- This allows to change between versions and snapshots. -->
2024-01-21 17:21:14 +01:00
<build.version>1.8.0</build.version>
2019-07-07 23:40:36 +02:00
<build.number>-LOCAL</build.number>
<sonar.projectKey>BentoBoxWorld_Greenhouses</sonar.projectKey>
<sonar.organization>bentobox-world</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
2019-07-07 23:40:36 +02:00
</properties>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<profiles>
<!-- Build profile is activated by BUILD_NUMBER variable. It replaces
0 with correct build number. -->
<!-- This profile will be used only if BUILD_NUMBER environment variable
exists. -->
<profile>
<id>ci</id>
<activation>
<property>
<name>env.BUILD_NUMBER</name>
</property>
</activation>
<properties>
<!-- Override only if necessary -->
<build.number>-b${env.BUILD_NUMBER}</build.number>
<!-- GIT_BRANCH -->
</properties>
</profile>
<!-- master profile is activated by GIT_BRANCH variable. It removes
'-SNAPSHOT' at the end of -->
<!-- ${build.version} -->
<!-- This profile will be used only if environment variable GIT_BRANCH
is origin/master. -->
<profile>
<id>master</id>
<activation>
<property>
<name>env.GIT_BRANCH</name>
<value>origin/master</value>
</property>
</activation>
<properties>
<!-- Override only if necessary -->
<revision>${build.version}</revision>
<!-- Empties build.number value -->
<build.number></build.number>
</properties>
</profile>
</profiles>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
</repository>
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
2019-05-08 21:45:48 +02:00
</repository>
2019-07-07 23:40:36 +02:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${spigot.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>${bentobox.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mockito (Unit testing) -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
2021-08-01 08:10:07 +02:00
<version>3.11.2</version>
2019-07-07 23:40:36 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
2019-07-07 23:40:36 +02:00
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
2019-07-07 23:40:36 +02:00
</dependencies>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<build>
<!-- By default ${revision} is ${build.version}-SNAPSHOT -->
<!-- If GIT_BRANCH variable is set to origin/master, then it will
be only ${build.version}. -->
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<!-- By default ${build.number} is -LOCAL. -->
<!-- If the BUILD_NUMBER variable is set, then it will be -b[number]. -->
<!-- If GIT_BRANCH variable is set to origin/master, then it will
be the empty string. -->
<finalName>${project.name}-${revision}${build.number}</finalName>
2019-01-19 16:52:04 +01:00
2019-07-07 23:40:36 +02:00
<defaultGoal>clean package</defaultGoal>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/locales</directory>
<targetPath>./locales</targetPath>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
2021-08-01 08:10:07 +02:00
<release>${java.version}</release>
2019-07-07 23:40:36 +02:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
2023-06-04 17:57:01 +02:00
<version>3.1.0</version>
2021-08-01 08:10:07 +02:00
<configuration>
<argLine>
2023-02-10 00:18:43 +01:00
${argLine}
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
--add-opens java.base/java.util.concurrent=ALL-UNNAMED
2021-08-01 08:10:07 +02:00
</argLine>
</configuration>
2019-07-07 23:40:36 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<show>public</show>
<failOnError>false</failOnError>
<additionalJOption>-Xdoclint:none</additionalJOption>
2021-08-01 08:10:07 +02:00
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
2019-07-07 23:40:36 +02:00
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
2021-08-01 08:10:07 +02:00
<phase>install</phase>
2019-07-07 23:40:36 +02:00
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
2023-07-11 06:44:43 +02:00
<version>0.8.10</version>
2019-07-07 23:40:36 +02:00
<configuration>
<append>true</append>
2019-11-01 05:36:05 +01:00
<excludes>
<!-- This is required to prevent Jacoco from adding
synthetic fields to a JavaBean class (causes errors in testing) -->
2019-11-01 05:36:05 +01:00
<exclude>**/*Names*</exclude>
2024-01-13 18:29:53 +01:00
<!-- Prevents the Material is too large to mock error -->
<exclude>org/bukkit/Material*</exclude>
2019-11-01 05:36:05 +01:00
</excludes>
2019-07-07 23:40:36 +02:00
</configuration>
<executions>
<execution>
2023-02-10 02:09:21 +01:00
<id>prepare-agent</id>
2019-07-07 23:40:36 +02:00
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
2023-02-10 02:09:21 +01:00
<id>report</id>
2019-07-07 23:40:36 +02:00
<goals>
<goal>report</goal>
</goals>
2023-02-10 02:09:21 +01:00
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
2019-07-07 23:40:36 +02:00
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>