catch-throwable
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.catch-exception</groupId> <artifactId>catch-throwable</artifactId> <version>1.2.0</version> </dependency>
<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>com.googlecode.catch-exception</groupId> <artifactId>catch-exception-parent</artifactId> <version>1.2.0</version> </parent> <artifactId>catch-throwable</artifactId> <description>Catch throwables (not only exceptions)</description> <properties> <!-- needed for javadoc, license and so on --> <catchException.parent>${project.parent.basedir}</catchException.parent> </properties> <dependencies> <!-- required runtime scope dependencies +++++++++++++++++++++++++++++++ --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <!-- successfully tested versions: 1.8.1, 1.8.2, 1.8.3, 1.8.4, 1.8.5, 1.9.0-rc1, 1.9.0, 1.9.5-rc1, 1.9.5 not compatible versions: 1.5, 1.6, 1.7 --> </dependency> <!-- optional runtime scope dependencies +++++++++++++++++++++++++++++++ --> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert-core</artifactId> <version>2.0M10</version> <optional>true</optional> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>1.4.0</version> <optional>true</optional> </dependency> <!-- required test scope dependencies ++++++++++++++++++++++++++++++++++ --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <optional>true</optional> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- phase "package" should create the test.jar as well --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <!-- phase "package" should create the sources.jar and test-sources.jar as well --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </project>