| 组织ID: |
net.openhft |
| 项目ID: |
chronicle-queue |
| 版本: |
4.6.62 |
| 最后修改时间: |
2019-12-06 17:22:56 |
| 包类型: |
jar |
| 标题: |
OpenHFT/Chronicle-Queue |
| 描述: |
Java library for persisted low latency messaging (Java 8+) |
| 大小: |
213.45KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-queue</artifactId>
<version>4.6.62</version>
</dependency>
|
| Gradle引入代码: |
net.openhft:chronicle-queue:4.6.62
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2016 higherfrequencytrading.com
~
~ Licensed under the *Apache License, Version 2.0* (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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.13</version>
<relativePath />
</parent>
<artifactId>chronicle-queue</artifactId>
<version>4.6.62</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> <!-- PLEASE DON'T LEAVE THIS ON A SNAPSHOT because they get missed in a release -->
<type>pom</type>
<version>3.6.0</version>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-bom</artifactId>
<version>1.15.32</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>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</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>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</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-surefire-plugin</artifactId>
<configuration>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
</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>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>all</shadedClassifierName> <!-- Any name that makes sense -->
</configuration>
</execution>
</executions>
</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.6.62</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.BufferMode.class
net.openhft.chronicle.queue.ChronicleHistoryReaderMain.class
net.openhft.chronicle.queue.ChronicleQueue.class
net.openhft.chronicle.queue.ChronicleQueueBuilder.class
net.openhft.chronicle.queue.ChronicleReaderMain.class
net.openhft.chronicle.queue.CycleCalculator.class
net.openhft.chronicle.queue.DefaultCycleCalculator.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.PretouchHandler.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.CommonStore.class
net.openhft.chronicle.queue.impl.ExcerptContext.class
net.openhft.chronicle.queue.impl.RollingChronicleQueue.class
net.openhft.chronicle.queue.impl.RollingResourcesCache$ParseCount.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.TableStore.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.BinarySearch.class
net.openhft.chronicle.queue.impl.single.DirectoryListing.class
net.openhft.chronicle.queue.impl.single.FileSystemDirectoryListing.class
net.openhft.chronicle.queue.impl.single.MetaDataField.class
net.openhft.chronicle.queue.impl.single.MetaDataKeys.class
net.openhft.chronicle.queue.impl.single.NoDocumentContext.class
net.openhft.chronicle.queue.impl.single.NoopQueueLock.class
net.openhft.chronicle.queue.impl.single.PrecreatedFiles.class
net.openhft.chronicle.queue.impl.single.Pretoucher.class
net.openhft.chronicle.queue.impl.single.PretoucherState.class
net.openhft.chronicle.queue.impl.single.QueueFiles.class
net.openhft.chronicle.queue.impl.single.QueueLock.class
net.openhft.chronicle.queue.impl.single.RollCycleEncodeSequence.class
net.openhft.chronicle.queue.impl.single.RollCycleRetriever.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$CachedCycleTree.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$ClosableResources.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$InternalAppender.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreAppender$HeaderWriteStrategy.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreAppender$HeaderWriteStrategyDefer.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreAppender$HeaderWriteStrategyOriginal.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$MoveToState.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer$StoreTailerContext.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$StoreTailer.class
net.openhft.chronicle.queue.impl.single.SingleChronicleQueueExcerpts$WireWriter.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
third-party-bom
-3.6.0.jar
/net.openhft/third-party-bom
/3.6.0
查看third-party-bom
所有版本文件
chronicle-bom-1.15.32.jar
/net.openhft/chronicle-bom/1.15.32
查看chronicle-bom所有版本文件
|