Download raven-4.1.2.jar file

Introduction

You can download raven-4.1.2.jar in this page.

License

Open Source

Type List

raven-4.1.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.kencochrane.raven/raven/pom.properties
META-INF/maven/net.kencochrane.raven/raven/pom.xml
META-INF/services/net.kencochrane.raven.RavenFactory
net.kencochrane.raven.DefaultRavenFactory.class
net.kencochrane.raven.Raven.class
net.kencochrane.raven.RavenFactory.class
net.kencochrane.raven.connection.AbstractConnection.class
net.kencochrane.raven.connection.AsyncConnection.class
net.kencochrane.raven.connection.Connection.class
net.kencochrane.raven.connection.ConnectionException.class
net.kencochrane.raven.connection.HttpConnection.class
net.kencochrane.raven.connection.UdpConnection.class
net.kencochrane.raven.dsn.Dsn.class
net.kencochrane.raven.dsn.InvalidDsnException.class
net.kencochrane.raven.dsn.JndiLookup.class
net.kencochrane.raven.event.Event.class
net.kencochrane.raven.event.EventBuilder.class
net.kencochrane.raven.event.helper.EventBuilderHelper.class
net.kencochrane.raven.event.helper.HttpEventBuilderHelper.class
net.kencochrane.raven.event.interfaces.ExceptionInterface.class
net.kencochrane.raven.event.interfaces.HttpInterface.class
net.kencochrane.raven.event.interfaces.ImmutableThrowable.class
net.kencochrane.raven.event.interfaces.MessageInterface.class
net.kencochrane.raven.event.interfaces.SentryInterface.class
net.kencochrane.raven.event.interfaces.StackTraceInterface.class
net.kencochrane.raven.jul.SentryHandler.class
net.kencochrane.raven.marshaller.Marshaller.class
net.kencochrane.raven.marshaller.json.ExceptionInterfaceBinding.class
net.kencochrane.raven.marshaller.json.HttpInterfaceBinding.class
net.kencochrane.raven.marshaller.json.InterfaceBinding.class
net.kencochrane.raven.marshaller.json.JsonMarshaller.class
net.kencochrane.raven.marshaller.json.MessageInterfaceBinding.class
net.kencochrane.raven.marshaller.json.StackTraceInterfaceBinding.class
net.kencochrane.raven.servlet.RavenServletRequestListener.class
raven-build.properties

Pom

raven-4.1.2.pom file content.

<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>net.kencochrane.raven</groupId>
        <artifactId>raven-all</artifactId>
        <version>4.1.2</version>
    </parent>

    <artifactId>raven</artifactId>
    <packaging>jar</packaging>

    <name>Raven-Java client</name>
    <description>Sentry client written in Java.</description>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>

        <!-- Test dependencies -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-jdk14</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- Only there to mock classes which aren't handled by jmockit such as ReentrantLock -->
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.googlecode.jmockit</groupId>
            <artifactId>jmockit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>raven-build.properties</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>buildnumber-maven-plugin</artifactId>
                <version>1.2</version>
                <executions>
                    <execution>
                        <!--<phase>generate-resources</phase>-->
                        <phase>validate</phase>
                        <goals>
                            <goal>create</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <format>Raven-Java/{0}-{1}</format>
                    <items>
                        <item>${project.version}</item>
                        <item>scmVersion</item>
                    </items>
                    <shortRevisionLength>5</shortRevisionLength>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <configuration>
                    <systemPropertyVariables>
                        <java.util.logging.config.file>
                            ${project.basedir}/src/test/resources/logging-integration.properties
                        </java.util.logging.config.file>
                    </systemPropertyVariables>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>net.kencochrane.raven</groupId>
   <artifactId>raven</artifactId>
   <version>4.1.2</version>
</dependency>

Download

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



Download raven-4.1.2.jar file




PreviousNext

Related