2018-08-08 23:34:35 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-08-25 01:18:53 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2019-11-04 03:14:10 +01:00
|
|
|
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>
|
2018-08-08 23:34:35 +02:00
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<groupId>world.bentobox</groupId>
|
|
|
|
<artifactId>level</artifactId>
|
2019-08-07 17:08:11 +02:00
|
|
|
<version>${revision}</version>
|
2018-08-08 23:34:35 +02:00
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<name>Level</name>
|
|
|
|
<description>Level is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like SkyBlock or AcidIsland.</description>
|
|
|
|
<url>https://github.com/BentoBoxWorld/Level</url>
|
|
|
|
<inceptionYear>2017</inceptionYear>
|
2018-08-08 23:34:35 +02:00
|
|
|
|
2019-08-07 17:08:11 +02:00
|
|
|
<developers>
|
2019-11-04 03:14:10 +01:00
|
|
|
<developer>
|
2019-08-07 17:08:11 +02:00
|
|
|
<id>tastybento</id>
|
|
|
|
<email>tastybento@bentobox.world</email>
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
<roles>
|
|
|
|
<role>Lead Developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2018-08-08 23:34:35 +02:00
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/BentoBoxWorld/Level.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:BentoBoxWorld/Level.git</developerConnection>
|
|
|
|
<url>https://github.com/BentoBoxWorld/Level</url>
|
|
|
|
</scm>
|
2018-10-31 14:14:30 +01:00
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>http://ci.codemc.org/job/BentoBoxWorld/job/Level</url>
|
|
|
|
</ciManagement>
|
2018-08-08 23:34:35 +02:00
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/BentoBoxWorld/Level/issues</url>
|
|
|
|
</issueManagement>
|
2018-10-31 14:14:30 +01:00
|
|
|
|
2019-11-04 03:14:10 +01: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>
|
2019-08-07 17:08:11 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2022-11-27 02:48:55 +01:00
|
|
|
<java.version>17</java.version>
|
2019-08-07 17:08:11 +02:00
|
|
|
<!-- Non-minecraft related dependencies -->
|
2021-06-20 19:44:10 +02:00
|
|
|
<powermock.version>2.0.9</powermock.version>
|
2019-08-07 17:08:11 +02:00
|
|
|
<!-- More visible way how to change dependency versions -->
|
2023-04-15 20:38:19 +02:00
|
|
|
<spigot.version>1.19.4-R0.1-SNAPSHOT</spigot.version>
|
2023-11-12 18:42:43 +01:00
|
|
|
<bentobox.version>2.0.0-SNAPSHOT</bentobox.version>
|
2022-08-21 12:00:56 +02:00
|
|
|
<!-- Warps addon version -->
|
|
|
|
<warps.version>1.12.0</warps.version>
|
|
|
|
<!-- Visit addon version -->
|
|
|
|
<visit.version>1.4.0</visit.version>
|
2022-03-13 13:28:08 +01:00
|
|
|
<!-- Panel Utils version -->
|
2022-06-17 13:40:10 +02:00
|
|
|
<panelutils.version>1.1.0</panelutils.version>
|
2019-08-07 17:08:11 +02:00
|
|
|
<!-- Revision variable removes warning about dynamic version -->
|
|
|
|
<revision>${build.version}-SNAPSHOT</revision>
|
|
|
|
<!-- Do not change unless you want different name for local builds. -->
|
|
|
|
<build.number>-LOCAL</build.number>
|
|
|
|
<!-- This allows to change between versions. -->
|
2023-11-18 22:06:44 +01:00
|
|
|
<build.version>2.12.0</build.version>
|
2021-06-20 19:39:03 +02:00
|
|
|
<sonar.projectKey>BentoBoxWorld_Level</sonar.projectKey>
|
|
|
|
<sonar.organization>bentobox-world</sonar.organization>
|
|
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
2019-11-04 03:14:10 +01:00
|
|
|
</properties>
|
2018-08-08 23:34:35 +02:00
|
|
|
|
2019-08-07 17:08:11 +02:00
|
|
|
<!-- Profiles will allow to automatically change build version. -->
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
2019-11-04 03:14:10 +01:00
|
|
|
<!-- ci profile is activated if exist environment variable BUILD_NUMBER. -->
|
|
|
|
<!-- It replaces ${build.number} that is currently '-LOCAL' with
|
|
|
|
correct build number from JENKINS machine. -->
|
2019-08-07 17:08:11 +02:00
|
|
|
<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>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
2019-11-04 03:14:10 +01:00
|
|
|
<!-- Master profile is activated if exist environment variable
|
|
|
|
GIT_BRANCH and its value is origin/master. -->
|
|
|
|
<!-- It will replace 'revision' with '${build.version}' so it
|
|
|
|
removes '-SNAPSHOT' string at the end. -->
|
|
|
|
<!-- Also, as this is release build, build number can be set
|
|
|
|
to empty string. -->
|
|
|
|
<!-- This profile will be used only if exist environment variable
|
|
|
|
GIT_BRANCH with value origin/master. -->
|
2019-08-07 17:08:11 +02:00
|
|
|
<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>
|
2019-11-04 03:14:10 +01:00
|
|
|
<!-- Empties build number variable. -->
|
2019-08-07 17:08:11 +02:00
|
|
|
<build.number></build.number>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2019-11-04 03:14:10 +01:00
|
|
|
|
2022-03-19 19:33:36 +01:00
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>https://repository.apache.org/snapshots/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<repositories>
|
2020-07-18 00:27:09 +02:00
|
|
|
<!--Wild Stacker repo -->
|
2020-01-28 17:32:52 +01:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2021-08-10 05:00:55 +02:00
|
|
|
<!-- RoseStacker repo -->
|
|
|
|
<repository>
|
|
|
|
<id>rosewood-repo</id>
|
|
|
|
<url>https://repo.rosewooddev.io/repository/public/</url>
|
|
|
|
</repository>
|
2023-04-05 13:14:16 +02:00
|
|
|
<!-- UltimateStacker repo -->
|
|
|
|
<repository>
|
|
|
|
<id>songoda-public</id>
|
|
|
|
<url>https://repo.songoda.com/repository/public/</url>
|
|
|
|
</repository>
|
2023-06-03 18:15:32 +02:00
|
|
|
<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>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>codemc-public</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
</repository>
|
2019-11-04 03:14:10 +01:00
|
|
|
</repositories>
|
2018-08-11 20:04:54 +02:00
|
|
|
|
2019-08-07 17:08:11 +02:00
|
|
|
<dependencies>
|
|
|
|
<!-- Spigot API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>${spigot.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Mockito (Unit testing) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2021-06-20 19:44:10 +02:00
|
|
|
<version>3.11.1</version>
|
2019-08-07 17:08:11 +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>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>world.bentobox</groupId>
|
|
|
|
<artifactId>bentobox</artifactId>
|
|
|
|
<version>${bentobox.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-08-21 12:00:56 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>world.bentobox</groupId>
|
|
|
|
<artifactId>warps</artifactId>
|
|
|
|
<version>${warps.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>world.bentobox</groupId>
|
|
|
|
<artifactId>visit</artifactId>
|
|
|
|
<version>${visit.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-03-13 13:28:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>lv.id.bonne</groupId>
|
|
|
|
<artifactId>panelutils</artifactId>
|
|
|
|
<version>${panelutils.version}</version>
|
|
|
|
</dependency>
|
2020-07-18 00:27:09 +02:00
|
|
|
<!-- Wild Stacker dependency -->
|
2020-01-28 17:32:52 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.OmerBenGera</groupId>
|
|
|
|
<artifactId>WildStackerAPI</artifactId>
|
2021-02-21 04:06:55 +01:00
|
|
|
<version>b18</version>
|
2021-08-10 05:00:55 +02:00
|
|
|
<scope>provided</scope>
|
2020-01-28 17:32:52 +01:00
|
|
|
</dependency>
|
2020-07-18 00:27:09 +02:00
|
|
|
<!-- Static analysis -->
|
|
|
|
<!-- We are using Eclipse's annotations. If you're using IDEA, update
|
|
|
|
your project settings to take these into account for in real time static
|
|
|
|
analysis -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
|
|
<artifactId>org.eclipse.jdt.annotation</artifactId>
|
2021-06-20 19:44:10 +02:00
|
|
|
<version>2.2.600</version>
|
2020-07-18 00:27:09 +02:00
|
|
|
</dependency>
|
2021-02-24 03:58:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.DeadSilenceIV</groupId>
|
|
|
|
<artifactId>AdvancedChestsAPI</artifactId>
|
2022-07-15 00:53:27 +02:00
|
|
|
<version>2.9-BETA</version>
|
2021-08-10 05:00:55 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.rosewood</groupId>
|
|
|
|
<artifactId>rosestacker</artifactId>
|
|
|
|
<version>1.3.0</version>
|
|
|
|
<scope>provided</scope>
|
2021-02-24 03:58:47 +01:00
|
|
|
</dependency>
|
2023-04-05 13:14:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>UltimateStacker</artifactId>
|
2023-10-07 01:14:45 +02:00
|
|
|
<version>2.4.0</version>
|
2023-04-05 13:14:16 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-08-07 17:08:11 +02:00
|
|
|
</dependencies>
|
2018-08-11 20:04:54 +02:00
|
|
|
|
2019-11-04 03:14:10 +01:00
|
|
|
<build>
|
2019-08-07 17:08:11 +02:00
|
|
|
<!-- By default ${revision} is ${build.version}-SNAPSHOT -->
|
2019-11-04 03:14:10 +01:00
|
|
|
<!-- If GIT_BRANCH variable is set to origin/master, then it will
|
|
|
|
be only ${build.version}. -->
|
2019-08-07 17:08:11 +02:00
|
|
|
|
|
|
|
<!-- By default ${build.number} is -LOCAL. -->
|
|
|
|
<!-- If the BUILD_NUMBER variable is set, then it will be -b[number]. -->
|
2019-11-04 03:14:10 +01:00
|
|
|
<!-- If GIT_BRANCH variable is set to origin/master, then it will
|
|
|
|
be the empty string. -->
|
2019-08-07 17:08:11 +02:00
|
|
|
<finalName>${project.name}-${revision}${build.number}</finalName>
|
2019-11-04 03:14:10 +01: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>
|
2021-06-20 19:39:03 +02:00
|
|
|
<version>3.8.0</version>
|
2019-11-04 03:14:10 +01:00
|
|
|
<configuration>
|
2021-06-20 19:39:03 +02:00
|
|
|
<release>${java.version}</release>
|
2019-11-04 03:14:10 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2021-06-21 02:31:52 +02:00
|
|
|
<version>3.0.0-M5</version>
|
2021-06-20 19:39:03 +02:00
|
|
|
<configuration>
|
|
|
|
<argLine>
|
2023-02-10 00:15:15 +01:00
|
|
|
${argLine}
|
2021-10-02 02:41:39 +02:00
|
|
|
--add-opens java.base/java.lang=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.math=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.io=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.util=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.base/java.util.stream=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.text=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.base/java.util.regex=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.base/java.nio.channels.spi=ALL-UNNAMED
|
|
|
|
--add-opens java.base/sun.nio.ch=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.net=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.base/java.util.concurrent=ALL-UNNAMED
|
|
|
|
--add-opens java.base/sun.nio.fs=ALL-UNNAMED
|
|
|
|
--add-opens java.base/sun.nio.cs=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.nio.file=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.base/java.nio.charset=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.base/java.lang.reflect=ALL-UNNAMED
|
|
|
|
--add-opens
|
|
|
|
java.logging/java.util.logging=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.lang.ref=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.util.jar=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.util.zip=ALL-UNNAMED
|
2021-06-20 19:39:03 +02:00
|
|
|
</argLine>
|
|
|
|
</configuration>
|
2019-11-04 03:14:10 +01: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>
|
2023-06-03 18:15:32 +02:00
|
|
|
<doclint>none</doclint> <!-- Turnoff all checks -->
|
2019-11-04 03:14:10 +01:00
|
|
|
<failOnError>false</failOnError>
|
2020-01-10 23:05:00 +01:00
|
|
|
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
|
2023-06-03 18:15:32 +02:00
|
|
|
<source>17</source>
|
2019-11-04 03:14:10 +01:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<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>
|
2022-03-13 13:28:08 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.3.1-SNAPSHOT</version>
|
|
|
|
<configuration>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>lv.id.bonne:panelutils:*</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<transformers>
|
|
|
|
<!-- Add a transformer to exclude any other manifest files (possibly from dependencies). -->
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
|
|
|
|
<resource>MANIFEST.MF</resource>
|
|
|
|
</transformer>
|
|
|
|
<!-- Add a transformer to include your custom manifest file. -->
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
|
|
|
|
<resource>META-INF/MANIFEST.MF</resource>
|
|
|
|
<file>src/main/resources/META-INF/MANIFEST.MF</file>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-11-04 03:14:10 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2023-07-11 06:23:33 +02:00
|
|
|
<version>0.8.11</version>
|
2019-11-04 03:14:10 +01:00
|
|
|
<configuration>
|
|
|
|
<append>true</append>
|
|
|
|
<excludes>
|
|
|
|
<!-- This is required to prevent Jacoco from adding
|
|
|
|
synthetic fields to a JavaBean class (causes errors in testing) -->
|
|
|
|
<exclude>**/*Names*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2023-02-10 02:05:27 +01:00
|
|
|
<id>prepare-agent</id>
|
2019-11-04 03:14:10 +01:00
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
2023-02-10 02:05:27 +01:00
|
|
|
<id>report</id>
|
2019-11-04 03:14:10 +01:00
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
2023-02-10 02:05:27 +01:00
|
|
|
<configuration>
|
|
|
|
<formats>
|
|
|
|
<format>XML</format>
|
|
|
|
</formats>
|
|
|
|
</configuration>
|
2019-11-04 03:14:10 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-08-11 20:04:54 +02:00
|
|
|
|
2023-02-10 00:15:15 +01:00
|
|
|
</project>
|