testy-box
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.irun</groupId>
<artifactId>testy-box</artifactId>
<version>1.10.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>
<groupId>fr.irun</groupId>
<artifactId>rocket-parent</artifactId>
<version>18</version>
</parent>
<artifactId>testy-box</artifactId>
<version>1.10.0</version>
<packaging>pom</packaging>
<name>Testy Box</name>
<description>A JUnit 5 tools library.</description>
<url>https://github.com/i-Run/testy-box</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@gitlab.i-run.fr:nora/rocket/testy-box.git</connection>
<developerConnection>scm:git:git@gitlab.i-run.fr:nora/rocket/testy-box.git</developerConnection>
<url>https://gitlab.i-run.fr/nora/rocket/testy-box</url>
<tag>1.10.0</tag>
</scm>
<modules>
<module>testy-mongo-box</module>
<module>testy-core-box</module>
<module>testy-jooq-box</module>
<module>testy-beat-box</module>
</modules>
<properties>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-scm-provider-gitexe.version>1.11.2</maven-scm-provider-gitexe.version>
<maven-scm-api.version>1.11.2</maven-scm-api.version>
</properties>
<distributionManagement>
<!-- Publish versioned releases here -->
<repository>
<id>nexus</id>
<url>https://nexus.i-run.fr/repository/releases/</url>
</repository>
<!-- Publish snapshots here -->
<snapshotRepository>
<id>nexus</id>
<url>https://nexus.i-run.fr/repository/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<localCheckout>true</localCheckout>
<mavenExecutorId>forked-path</mavenExecutorId>
<releaseProfiles>releases</releaseProfiles>
</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>
</plugins>
</pluginManagement>
</build>
<profiles>
<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>
<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-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>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
<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.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.5</version>
<configuration>
<flattenMode>ossrh</flattenMode>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<developers>
<developer>
<id>fcombes</id>
<name>Frédéric Combes</name>
<organization>i-Run</organization>
<organizationUrl>https://www.i-run.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>
</project>