Download lyra-0.3.1.jar file

Introduction

You can download lyra-0.3.1.jar in this page.

License

Apache License, Version 2.0

Type List

lyra-0.3.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.jodah/lyra/pom.properties
META-INF/maven/net.jodah/lyra/pom.xml
net.jodah.lyra.ConnectionOptions.class
net.jodah.lyra.Connections.class
net.jodah.lyra.config.ChannelConfig.class
net.jodah.lyra.config.Config.class
net.jodah.lyra.config.ConfigurableChannel.class
net.jodah.lyra.config.ConfigurableConnection.class
net.jodah.lyra.config.ConnectionConfig.class
net.jodah.lyra.config.ConsumerConfig.class
net.jodah.lyra.event.ChannelListener.class
net.jodah.lyra.event.ConnectionListener.class
net.jodah.lyra.event.ConsumerListener.class
net.jodah.lyra.event.DefaultChannelListener.class
net.jodah.lyra.event.DefaultConnectionListener.class
net.jodah.lyra.event.DefaultConsumerListener.class
net.jodah.lyra.internal.ChannelHandler.class
net.jodah.lyra.internal.ConnectionHandler.class
net.jodah.lyra.internal.Invocation.class
net.jodah.lyra.internal.RetryStats.class
net.jodah.lyra.internal.RetryableResource.class
net.jodah.lyra.internal.util.Addresses.class
net.jodah.lyra.internal.util.Assert.class
net.jodah.lyra.internal.util.Collections.class
net.jodah.lyra.internal.util.Exceptions.class
net.jodah.lyra.internal.util.Reflection.class
net.jodah.lyra.internal.util.concurrent.InterruptableWaiter.class
net.jodah.lyra.internal.util.concurrent.NamedThreadFactory.class
net.jodah.lyra.internal.util.concurrent.ReentrantCircuit.class
net.jodah.lyra.retry.RetryPolicies.class
net.jodah.lyra.retry.RetryPolicy.class
net.jodah.lyra.util.Duration.class

Pom

lyra-0.3.1.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>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <groupId>net.jodah</groupId>
  <artifactId>lyra</artifactId>
  <version>0.3.1</version>
  <packaging>jar</packaging>
  <name>Lyra</name>
  <url>http://github.com/jhalterman/lyra/</url>

  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Jonathan Halterman</name>
      <url>http://jodah.net</url>
    </developer>
  </developers>

  <properties>
    <logback.version>1.0.13</logback.version>
  </properties>

  <scm>
    <connection>scm:git:git@github.com:jhalterman/lyra.git</connection>
    <developerConnection>scm:git:git@github.com:jhalterman/lyra.git</developerConnection>
    <url>http://github.com/jhalterman/lyra/</url>
  </scm>

  <dependencies>
    <dependency>
      <groupId>com.rabbitmq</groupId>
      <artifactId>amqp-client</artifactId>
      <version>3.1.4</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.5</version>
    </dependency>

    <!-- Test deps -->
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.5.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jodah</groupId>
      <artifactId>concurrentunit</artifactId>
      <version>0.3.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>${logback.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-core</artifactId>
      <version>${logback.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <configuration>
          <author>false</author>
          <protected>true</protected>
          <excludePackageNames>*.internal</excludePackageNames>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>javadoc</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9.1</version>
            <configuration>
              <author>false</author>
              <protected>true</protected>
              <excludePackageNames>*.internal:*.internal.*</excludePackageNames>
              <reportOutputDirectory>docs</reportOutputDirectory>
              <destDir>javadoc</destDir>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

</project>

POM Entry

<dependency>
   <groupId>net.jodah</groupId>
   <artifactId>lyra</artifactId>
   <version>0.3.1</version>
</dependency>

Download

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



Download lyra-0.3.1.jar file




PreviousNext

Related