testing-lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.team33.testing</groupId>
<artifactId>testing-lib</artifactId>
<version>1.1.1</version>
</dependency><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>
<parent>
<groupId>de.team33.testing</groupId>
<artifactId>testing-root</artifactId>
<version>1.1.1</version>
</parent>
<artifactId>testing-lib</artifactId>
<packaging>pom</packaging>
<name>Team33 Testing Library</name>
<description>Parent of team33 testing library collection</description>
<modules>
<module>bridging-styx</module>
<module>async-thebe</module>
<module>stdio-ersa</module>
<module>io-hydra</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Submodules -->
<dependency>
<groupId>de.team33.testing</groupId>
<artifactId>testing-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Team33 Depts -->
<dependency>
<groupId>de.team33.patterns</groupId>
<artifactId>patterns-bom</artifactId>
<version>1.25.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>default-resources-home</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/../../target/home-collected/testing-lib/${project.artifactId}</outputDirectory>
<resources>
<resource>
<directory>${basedir}/../../testing-home/src/main/model/module</directory>
<filtering>true</filtering>
</resource>
</resources>
<skip>${skipHome}</skip>
</configuration>
</execution>
<execution>
<id>apidoc-resources-home</id>
<phase>verify</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/../../target/home-collected/testing-lib/${project.artifactId}/apidocs</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/reports/apidocs</directory>
<filtering>false</filtering>
</resource>
</resources>
<skip>${skipHome}</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-default</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<dependencyConvergence />
<requireReleaseDeps>
<onlyWhenRelease>true</onlyWhenRelease>
<message>No Snapshots Allowed!</message>
</requireReleaseDeps>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>