Download catch-exception-1.2.0.jar file

Introduction

You can download catch-exception-1.2.0.jar in this page.

License

Google Open Source

Type List

catch-exception-1.2.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.googlecode.catch-exception/catch-exception/pom.properties
META-INF/maven/com.googlecode.catch-exception/catch-exception/pom.xml
com.googlecode.catchexception.CatchException.class
com.googlecode.catchexception.ExceptionNotThrownAssertionError.class
com.googlecode.catchexception.apis.CatchExceptionAssertJ.class
com.googlecode.catchexception.apis.CatchExceptionBdd.class
com.googlecode.catchexception.apis.CatchExceptionHamcrestMatchers.class
com.googlecode.catchexception.apis.internal.hamcrest.ExceptionMessageMatcher.class
com.googlecode.catchexception.apis.internal.hamcrest.ExceptionNoCauseMatcher.class
com.googlecode.catchexception.internal.AbstractExceptionProcessingInvocationHandler.class
com.googlecode.catchexception.internal.DelegatingInterceptor.class
com.googlecode.catchexception.internal.ExceptionHolder.class
com.googlecode.catchexception.internal.ExceptionProcessingInterceptor.class
com.googlecode.catchexception.internal.InterfaceOnlyProxy.class
com.googlecode.catchexception.internal.InterfaceOnlyProxyFactory.class
com.googlecode.catchexception.internal.ProxyFactory.class
com.googlecode.catchexception.internal.SubclassProxy.class
com.googlecode.catchexception.internal.SubclassProxyFactory.class

Pom

catch-exception-1.2.0.pom file content.

<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>
    <relativePath>..</relativePath>
  </parent>
  <groupId>com.googlecode.catch-exception</groupId>
  <artifactId>catch-exception</artifactId>
  <version>1.2.0</version>
  <packaging>jar</packaging>
  <description>Catch and verify exceptions</description>
  <url>http://code.google.com/p/catch-exception/</url>


  <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>
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
        <scope>test</scope>
    </dependency>    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>${spring.version}</version>
        <scope>test</scope>
        </dependency>    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
        <version>${spring.version}</version>
        <scope>test</scope>
    </dependency>    
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.0.1</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>

POM Entry

<dependency>
   <groupId>com.googlecode.catch-exception</groupId>
   <artifactId>catch-exception</artifactId>
   <version>1.2.0</version>
</dependency>

Download

If you think the following catch-exception-1.2.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download catch-exception-1.2.0.jar file




PreviousNext

Related