testy-box
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.ght1pc9kc</groupId> <artifactId>testy-box</artifactId> <version>2.0.1</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> <groupId>fr.ght1pc9kc</groupId> <artifactId>testy-box</artifactId> <version>2.0.1</version> <packaging>pom</packaging> <name>Testy Box</name> <description>A JUnit 5 tools library.</description> <url>https://github.com/Marthym/testy-box</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <scm> <connection>scm:git:git@git.trenzalor.lo:ght1pc9kc.fr/testy-box.git</connection> <developerConnection>scm:git:git@git.trenzalor.lo:ght1pc9kc.fr/testy-box.git</developerConnection> <url>https://github.com/Marthym/testy-box</url> <tag>2.0.1</tag> </scm> <modules> <module>testy-core-box</module> <module>testy-jooq-box</module> <module>testy-mongo-box</module> <module>testy-beat-box</module> <module>testy-params-box</module> <module>testy-redis-box</module> </modules> <properties> <encoding>UTF-8</encoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>21</maven.compiler.release> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <jakarta.inject-api.version>2.0.1</jakarta.inject-api.version> <jetbrains.version>26.0.2</jetbrains.version> <junit.version>5.13.3</junit.version> <lombok.version>1.18.38</lombok.version> <amqp-client.version>5.25.0</amqp-client.version> <embed-mongo.version>4.20.1</embed-mongo.version> <embedded-redis.version>1.4.3</embedded-redis.version> <flyway.version>9.22.3</flyway.version> <h2.version>2.3.232</h2.version> <jackson.version>2.19.1</jackson.version> <jakarta-xml-bind.version>4.0.2</jakarta-xml-bind.version> <jooq.version>3.20.5</jooq.version> <lettuce.version>6.7.1.RELEASE</lettuce.version> <mongodb-driver.version>5.5.1</mongodb-driver.version> <qbit.version>9.2.1</qbit.version> <reactor-rabbitmq.version>1.5.6</reactor-rabbitmq.version> <reactor.version>3.7.7</reactor.version> <slf4j.version>2.0.17</slf4j.version> <spring-mongo.version>4.5.1</spring-mongo.version> <assertj.version>3.27.3</assertj.version> <logback.version>1.5.18</logback.version> <mockito.version>5.18.0</mockito.version> <byte-buddy.version>1.17.6</byte-buddy.version> <build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version> <central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version> <flyway-maven-plugin.version>9.22.3</flyway-maven-plugin.version> <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> <jooq-codegen-maven.version>3.20.5</jooq-codegen-maven.version> <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> <maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version> <maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version> <maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> <maven-scm-api.version>2.1.0</maven-scm-api.version> <maven-scm-provider-gitexe.version>2.1.0</maven-scm-provider-gitexe.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version> <surefire.argline.opens /> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>${reactor.version}</version> </dependency> <!-- BEAT BOX--> <dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>${amqp-client.version}</version> </dependency> <dependency> <groupId>io.projectreactor.rabbitmq</groupId> <artifactId>reactor-rabbitmq</artifactId> <version>${reactor-rabbitmq.version}</version> </dependency> <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-broker-core</artifactId> <version>${qbit.version}</version> </dependency> <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-broker-plugins-amqp-0-8-protocol</artifactId> <version>${qbit.version}</version> </dependency> <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-broker-plugins-amqp-1-0-protocol</artifactId> <version>${qbit.version}</version> </dependency> <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-broker-plugins-memory-store</artifactId> <version>${qbit.version}</version> </dependency> <!--JOOQ--> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> <version>${jooq.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> <version>${flyway.version}</version> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${jakarta-xml-bind.version}</version> </dependency> <!--MONGO--> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> <version>${embed-mongo.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-mongodb</artifactId> <version>${spring-mongo.version}</version> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-reactivestreams</artifactId> <version>${mongodb-driver.version}</version> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <version>${jakarta.inject-api.version}</version> </dependency> <!-- REDIS--> <dependency> <groupId>com.github.codemonstur</groupId> <artifactId>embedded-redis</artifactId> <version>${embedded-redis.version}</version> </dependency> <dependency> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> <version>${lettuce.version}</version> </dependency> <!-- PROVIDED --> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>${jetbrains.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <!--TEST--> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>${byte-buddy.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>${reactor.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-parameter-names</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <release>${maven.compiler.release}</release> <parameters>true</parameters> <generatedSourcesDirectory>target/generated-sources</generatedSourcesDirectory> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <argLine>${surefire.argline.opens}</argLine> <excludes> <exclude /> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <argLine> --illegal-access=permit </argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <!-- Default configuration for all reports --> </configuration> <executions> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> <configuration> <!-- Specific configuration for the aggregate report --> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.flywaydb</groupId> <artifactId>flyway-maven-plugin</artifactId> <version>${flyway-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.jooq</groupId> <artifactId>jooq-codegen-maven</artifactId> <version>${jooq-codegen-maven.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build-helper-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <reportSets> <reportSet> <id>aggregate</id> <inherited>false</inherited> <reports> <report>aggregate</report> </reports> </reportSet> <reportSet> <id>default</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>sonar</id> <properties> <sonar.projectKey>Marthym_testy-box</sonar.projectKey> <sonar.organization>ght1pc9kc-fr</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey> <sonar.coverage.jacoco.xmlReportPaths>**/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> <sonar.coverage.exclusions>**/*.html</sonar.coverage.exclusions> <sonar.exclusions>**/*.html</sonar.exclusions> <sonar.java.binaries>${project.build.directory}/classes</sonar.java.binaries> </properties> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>aggregate</id> <goals> <goal>report-aggregate</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <argLine> ${surefire.argline.opens} ${argLine} </argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeArtifactIds>lombok</includeArtifactIds> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>releases</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <sourcepath>${delombok.output}</sourcepath> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> <execution> <id>javadoc-generate</id> <goals> <goal>resource-bundle</goal> </goals> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <releaseProfiles>releases</releaseProfiles> <updateDependencies>false</updateDependencies> <tagNameFormat>@{version}</tagNameFormat> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>${maven-scm-provider-gitexe.version}</version> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-api</artifactId> <version>${maven-scm-api.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <useAgent>true</useAgent> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>validated</waitUntil> </configuration> </plugin> </plugins> </build> </profile> </profiles> <developers> <developer> <id>fcombes</id> <name>Frédéric Combes</name> <organization>ght1pc9kc.fr</organization> <organizationUrl>https://blog.ght1pc9kc.fr/</organizationUrl> </developer> <developer> <id>bnwander</id> <name>Bertrand Neuenschwander</name> <organization>i-Run</organization> <organizationUrl>https://www.i-run.fr</organizationUrl> </developer> <developer> <id>cdaleas</id> <name>Clément Daleas</name> <organization>i-Run</organization> <organizationUrl>https://www.i-run.fr</organizationUrl> </developer> <developer> <id>cdeverre</id> <name>Christophe Deverre</name> <organization>i-Run</organization> <organizationUrl>https://www.i-run.fr</organizationUrl> </developer> <developer> <id>jdasilva</id> <name>Jonathan Da Silva</name> <organization>i-Run</organization> <organizationUrl>https://www.i-run.fr</organizationUrl> </developer> </developers> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>