powermock-release-with-junit-mockito-dependencies
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.powermock</groupId> <artifactId>powermock-release-with-junit-mockito-dependencies</artifactId> <version>1.6.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.powermock</groupId> <artifactId>powermock</artifactId> <version>1.6.2</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>powermock-release-with-junit-mockito-dependencies</artifactId> <packaging>pom</packaging> <name>${project.artifactId}</name> <description> Single jar containing binaries for PowerMock core, JUnit and Mockito modules. </description> <dependencies> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-release-junit-without-mock-framework</artifactId> <type>pom</type> <version>${project.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <finalName>powermock-mockito-junit-${project.version}</finalName> <descriptors> <descriptor>src/assembly/final.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>