Download jeromq-0.3.4.jar file

Introduction

You can download jeromq-0.3.4.jar in this page.

License

GNU General Lesser Public License (LGPL) version 3.0

Type List

jeromq-0.3.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.zeromq/jeromq/pom.properties
META-INF/maven/org.zeromq/jeromq/pom.xml
org.zeromq.ZContext.class
org.zeromq.ZFrame.class
org.zeromq.ZLoop.class
org.zeromq.ZMQ.class
org.zeromq.ZMQException.class
org.zeromq.ZMQQueue.class
org.zeromq.ZMsg.class
org.zeromq.ZThread.class
zmq.Address.class
zmq.Blob.class
zmq.Clock.class
zmq.Command.class
zmq.Config.class
zmq.Ctx.class
zmq.Dealer.class
zmq.Decoder.class
zmq.DecoderBase.class
zmq.Dist.class
zmq.Encoder.class
zmq.EncoderBase.class
zmq.FQ.class
zmq.IDecoder.class
zmq.IEncoder.class
zmq.IEngine.class
zmq.IMsgSink.class
zmq.IMsgSource.class
zmq.IOObject.class
zmq.IOThread.class
zmq.IPollEvents.class
zmq.IpcAddress.class
zmq.IpcConnecter.class
zmq.IpcListener.class
zmq.LB.class
zmq.Mailbox.class
zmq.Msg.class
zmq.Mtrie.class
zmq.MultiMap.class
zmq.Options.class
zmq.Own.class
zmq.Pair.class
zmq.Pipe.class
zmq.PollItem.class
zmq.Poller.class
zmq.PollerBase.class
zmq.Proxy.class
zmq.Pub.class
zmq.Pull.class
zmq.Push.class
zmq.Reaper.class
zmq.Rep.class
zmq.Req.class
zmq.Router.class
zmq.SessionBase.class
zmq.Signaler.class
zmq.SocketBase.class
zmq.StreamEngine.class
zmq.Sub.class
zmq.TcpAddress.class
zmq.TcpConnecter.class
zmq.TcpListener.class
zmq.Transfer.class
zmq.Trie.class
zmq.Utils.class
zmq.V1Decoder.class
zmq.V1Encoder.class
zmq.V1Protocol.class
zmq.ValueReference.class
zmq.XPub.class
zmq.XSub.class
zmq.YPipe.class
zmq.YQueue.class
zmq.ZError.class
zmq.ZMQ.class
zmq.ZObject.class

Pom

jeromq-0.3.4.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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.zeromq</groupId>
  <artifactId>jeromq</artifactId>
  <packaging>jar</packaging>
  <version>0.3.4</version>
  <name>JeroMQ</name>
  <description>Pure Java implementation of libzmq</description>
  <url>https://github.com/zeromq/jeromq</url>
  <licenses>
    <license>
      <name>GNU General Lesser Public License (LGPL) version 3.0</name>
      <url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
    </license>
  </licenses>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <scm>
    <url>git@github.com:zeromq/jeromq.git</url>
    <connection>scm:git:git@github.com:zeromq/jeromq.git</connection>
    <developerConnection>scm:git:git@github.com:zeromq/jeromq.git</developerConnection>
    <tag>v0.3.4</tag>
  </scm>
  <developers>
    <developer />
  </developers>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.3.7</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Export-Package>*</Export-Package>
          </instructions>
        </configuration>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>2.11</version>
        <executions>
          <execution>
            <phase>validate</phase>
            <goals>
                <goal>check</goal>
            </goals>
            <configuration>
                <consoleOutput>true</consoleOutput>
                <includeTestSourceDirectory>true</includeTestSourceDirectory>
                <configLocation>${project.basedir}/src/checkstyle/checks.xml</configLocation>
                <failOnViolation>false</failOnViolation> <!-- will be turned on -->
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <tagNameFormat>v@{project.version}</tagNameFormat>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.4</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.zeromq</groupId>
   <artifactId>jeromq</artifactId>
   <version>0.3.4</version>
</dependency>

Download

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



Download jeromq-0.3.4.jar file




PreviousNext

Related