easymock
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>5.5.0</version> </dependency>
<?xml version="1.0" encoding="ISO-8859-1"?> <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>org.easymock</groupId> <artifactId>easymock-parent</artifactId> <version>5.5.0</version> </parent> <artifactId>easymock</artifactId> <packaging>jar</packaging> <name>EasyMock</name> <description>EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly</description> <inceptionYear>2001</inceptionYear> <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> <dependencies> <!-- Used for class mocking --> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>1.15.10</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.7.1</version> <scope>runtime</scope> </dependency> <!-- Used for class mocking --> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>3.4</version> </dependency> <!-- Used for class mocking on Android --> <dependency> <groupId>org.droidparts.dexmaker</groupId> <artifactId>dexmaker</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Automatic-Module-Name>org.easymock</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${basedir}/src/samples/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package>org.easymock.*</Export-Package> <Import-Package>org.easymock.*,net.bytebuddy.*;resolution:=optional,org.objectweb.asm.*,org.objenesis;resolution:=optional</Import-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <dependencies> <dependency> <!-- Force junit provider because surefire will choose the testng one if testng is detected --> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit-platform</artifactId> <version>3.5.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <configuration> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>java18</artifactId> <version>1.0</version> </signature> <annotations> <annotation>org.easymock.internal.IgnoreAnimalSniffer</annotation> </annotations> </configuration> <executions> <execution> <id>source-java8-check</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>fullBuild</id> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> </plugin> </plugins> </build> </profile> <profile> <id>deployBuild</id> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <executions> <execution> <id>easymock-bundle</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${project.artifactId}-${project.version}</finalName> <attach>false</attach> <descriptors> <descriptor>${basedir}/src/main/assembly/assembly-tests.xml</descriptor> <descriptor>${basedir}/src/main/assembly/assembly-samples.xml</descriptor> <descriptor>${basedir}/src/main/assembly/assembly.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>