easymock
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>5.7.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>5.7.0</version>
<name>EasyMock</name>
<description>EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly</description>
<url>https://easymock.org/easymock</url>
<inceptionYear>2001</inceptionYear>
<organization>
<name><a href="https://easymock.org/contributors.html" target="_blank">EasyMock contributors</a></name>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>tammo</id>
<name>Tammo Freese</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>henri</id>
<name>Henri Tremblay</name>
<url>https://blog.tremblay.pro</url>
<timezone>-5</timezone>
</developer>
</developers>
<mailingLists>
<mailingList>
<name>Gitter</name>
<subscribe>https://gitter.im/home/explore/tags/subscription</subscribe>
<unsubscribe>https://gitter.im/easymock/easymock</unsubscribe>
<post>https://gitter.im/easymock/easymock</post>
<archive>https://gitter.im/easymock/easymock</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:git://github.com/easymock/easymock.git/easymock</connection>
<developerConnection>scm:git:git@github.com:easymock/easymock.git/easymock</developerConnection>
<url>https://github.com/easymock/easymock/easymock</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/easymock/easymock/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub</system>
<url>https://github.com/easymock/easymock/actions</url>
</ciManagement>
<dependencies>
<!-- Used for class mocking -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.18.12</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.10.1</version>
<scope>runtime</scope>
</dependency>
<!-- Used for class mocking -->
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>3.6</version>
<scope>compile</scope>
</dependency>
<!-- Used for class mocking on Android -->
<dependency>
<groupId>org.droidparts.dexmaker</groupId>
<artifactId>dexmaker</artifactId>
<version>1.5</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>6.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.12.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>6.1.0</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>