| 组织ID: |
net.openhft |
| 项目ID: |
chronicle-queue |
| 版本: |
4.5.13 |
| 最后修改时间: |
2019-03-12 15:45:25 |
| 包类型: |
jar |
| 标题: |
OpenHFT/Chronicle-Queue |
| 描述: |
Java library for persisted low latency messaging (Java 8+) |
| 大小: |
115.43KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-queue</artifactId>
<version>4.5.13</version>
</dependency>
|
| Gradle引入代码: |
net.openhft:chronicle-queue:4.5.13
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2015 higherfrequencytrading.com
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Lesser General Public License as published by
~ the Free Software Foundation, either version 3 of the License.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Lesser General Public License for more details.
~
~ You should have received a copy of the GNU Lesser General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses />.
-->
<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>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
<parent>
<groupId>net.openhft</groupId>
<artifactId>java-parent-pom</artifactId>
<version>1.1.10</version>
<relativePath />
</parent>
<artifactId>chronicle-queue</artifactId>
<version>4.5.13</version>
<packaging>bundle</packaging>
<name>OpenHFT/Chronicle-Queue</name>
<description>Java library for persisted low latency messaging (Java 8+)</description>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>third-party-bom</artifactId>
<type>pom</type>
<version>3.5.1</version>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-bom</artifactId>
<version>1.13.22</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-core</artifactId>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-bytes</artifactId>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-wire</artifactId>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-threads</artifactId>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>affinity</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<!-- for benchmarks -->
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-Xlint:deprecation</compilerArgument>
<compilerArgument>-XDignore.symbol.file</compilerArgument>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
<checkoutDirectory>${project.build.directory}/scmpublish/javadoc
</checkoutDirectory>
<checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}
</checkinComment>
<content>${project.reporting.outputDirectory}</content>
<skipDeletedFiles>true</skipDeletedFiles>
<pubScmUrl>scm:git:git@github.com:OpenHFT/Chronicle-Queue</pubScmUrl>
<scmBranch>gh-pages</scmBranch>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}
</Bundle-SymbolicName>
<Bundle-Name>OpenHFT :: ${project.artifactId}</Bundle-Name>
<Export-Package>net.openhft.chronicle.queue.*</Export-Package>
</instructions>
</configuration>
<executions>
<!--
This execution makes sure that the manifest is available
when the tests are executed
-->
<execution>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<url>scm:git:git@github.com:OpenHFT/Chronicle-Queue.git</url>
<connection>scm:git:git@github.com:OpenHFT/Chronicle-Queue.git</connection>
<developerConnection>scm:git:git@github.com:OpenHFT/Chronicle-Queue.git
</developerConnection>
<tag>chronicle-queue-4.5.13</tag>
</scm>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/net.openhft/chronicle-queue/pom.properties
META-INF/maven/net.openhft/chronicle-queue/pom.xml
net.openhft.chronicle.queue.ChronicleQueue.class
net.openhft.chronicle.queue.ChronicleQueueBuilder.class
net.openhft.chronicle.queue.ChronicleReader.class
net.openhft.chronicle.queue.DumpQueueMain.class
net.openhft.chronicle.queue.ExcerptAppender.class
net.openhft.chronicle.queue.ExcerptCommon.class
net.openhft.chronicle.queue.ExcerptTailer.class
net.openhft.chronicle.queue.JDBCComponent.class
net.openhft.chronicle.queue.JDBCResult.class
net.openhft.chronicle.queue.JDBCService.class
net.openhft.chronicle.queue.JDBCStatement.class
net.openhft.chronicle.queue.NoMessageHistory.class
net.openhft.chronicle.queue.RollCycle.class
net.openhft.chronicle.queue.RollCycles.class
net.openhft.chronicle.queue.RollDetails.class
net.openhft.chronicle.queue.TailerDirection.class
net.openhft.chronicle.queue.TailerState.class
net.openhft.chronicle.queue.impl.AbstractChronicleQueueBuilder$NoBytesRingBufferStats.class
net.openhft.chronicle.queue.impl.AbstractChronicleQueueBuilder.class
net.openhft.chronicle.queue.impl.ExcerptContext.class
net.openhft.chronicle.queue.impl.RollingChronicleQueue.class
net.openhft.chronicle.queue.impl.RollingResourcesCache$Resource.class
net.openhft.chronicle.queue.impl.RollingResourcesCache.class
net.openhft.chronicle.queue.impl.StoreFileListener.class
net.openhft.chronicle.queue.impl.WireStore.class
net.openhft.chronicle.queue.impl.WireStoreFactory.class
net.openhft.chronicle.queue.impl.WireStorePool.class
net.openhft.chronicle.queue.impl.WireStoreSupplier.class
net.openhft.chronicle.queue.impl.single.MetaDataKeys.class
net.openhft.chronicle.queue.impl.single.NoDocumentContext.class
net.openhft.chronicle.queue.impl.single.SCQIndexing$1.class
net.openhft.chronicle.queue.impl.single.SCQIndexing$IndexingFields.class
net.openhft.chronicle.queue.impl.single.SCQIndexing$LongArrayValuesHolder.class
net.openhft.chronicle.queue.impl.single.SCQIndexing.class
net.openhft.chronicle.queue.impl.single.SCQRoll$RollFields.class
net.openhft.chronicle.queue.impl.single.SCQRoll.class
net.openhft.chronicle.queue.impl.single.ScanResult.class
net.openhft.chronicle.queue.impl.single.SimpleStoreRecovery.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueue$1.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueue$StoreSupplier.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueue.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueBuilder.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$1.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$InternalAppender.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreAppender$StoreAppenderContext.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreAppender.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer$StoreTailerContext.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
third-party-bom-3.5.1.jar
/net.openhft/third-party-bom/3.5.1
查看third-party-bom所有版本文件
chronicle-bom-1.13.22.jar
/net.openhft/chronicle-bom/1.13.22
查看chronicle-bom所有版本文件
|