testing-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.team33.testing</groupId>
<artifactId>testing-root</artifactId>
<version>1.0.0</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>
<groupId>de.team33.testing</groupId>
<artifactId>testing-root</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>Team33 Testing Library Root</name>
<description>Team33 Testing Library Collection - Root Module</description>
<url>http://team33.de/dev/testing/1.x</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Andreas Kluge-Kaindl</name>
<email>akk-pg@team33.de</email>
<organization>team33.de</organization>
<organizationUrl>https://github.com/akk-team33/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/akk-team33/lib-testing.git</connection>
<developerConnection>scm:git:ssh://github.com:akk-team33/lib-testing.git</developerConnection>
<url>https://github.com/akk-team33/lib-testing</url>
</scm>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<copyright.year>2024</copyright.year>
<skipJavadoc>false</skipJavadoc>
<skipHome>false</skipHome>
<skipDeploy>false</skipDeploy>
</properties>
<modules>
<module>testing-bom</module>
<module>testing-lib</module>
<module>testing-home</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<show>protected</show>
<bottom><![CDATA[Copyright © ${copyright.year} Andreas Kluge-Kaindl, Bremen (de).
All rights reserved.]]></bottom>
<detectLinks>true</detectLinks>
<skip>${skipJavadoc}</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<skip>${skipDeploy}</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>