mocker-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>guru.mocker.java</groupId>
<artifactId>mocker-root</artifactId>
<version>1.0.5</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>guru.mocker.java</groupId>
<artifactId>mocker-root</artifactId>
<packaging>pom</packaging>
<version>1.0.5</version>
<url>https://mocker.guru</url>
<description>Mocker is a concept and utility to make mocks and stubs reusable and more reliable as they are automatically tested.
</description>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Verhás István</name>
<email>vi@mocker.guru</email>
<organization>Mocker Guru</organization>
<organizationUrl>https://mocker.guru</organizationUrl>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<scm>
<url>https://bitbucket.org/mocker-guru/mocker</url>
<connection>scm:git:${project.scm.url}.git</connection>
<developerConnection>${project.scm.connection}</developerConnection>
<tag>mocker-root-1.0.5</tag>
</scm>
<modules>
<module>parent</module>
<module>core</module>
<module>junit5</module>
<module>examples</module>
</modules>
<name>Mocker for java Root</name>
<properties>
<gpg.keyname>4E68D7F2627D3CB4</gpg.keyname>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>