chronicle-queue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.openhft</groupId> <artifactId>chronicle-queue</artifactId> <version>5.23ea4</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>java-parent-pom</artifactId> <groupId>net.openhft</groupId> <version>1.1.31</version> <relativePath>pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>chronicle-queue</artifactId> <packaging>bundle</packaging> <name>OpenHFT/Chronicle-Queue</name> <version>5.23ea4</version> <description>Java library for persisted low latency messaging (Java 8+)</description> <scm> <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-5.23ea4</tag> <url>scm:git:git@github.com:OpenHFT/Chronicle-Queue.git</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/queue.pom.properties</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <excludes> <exclude>**/queue.pom.properties</exclude> </excludes> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <forkCount>1</forkCount> <runOrder>hourly</runOrder> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <goals> <goal>manifest</goal> </goals> </execution> </executions> <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> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>net.openhft</groupId> <artifactId>binary-compatibility-enforcer-plugin</artifactId> <executions> <execution> <phase>verify</phase> <goals> <goal>enforcer</goal> </goals> <configuration> <referenceVersion>5.23ea0</referenceVersion> <artifactsURI>https://teamcity.chronicle.software/repository/download</artifactsURI> <binaryCompatibilityPercentageRequired>86.1</binaryCompatibilityPercentageRequired> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>8</source> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>bundled-nexus-staging</id> <repositories> <repository> <releases /> <id>chronicle-enterprise-release</id> <url>https://nexus.chronicle.software/content/repositories/releases</url> </repository> </repositories> </profile> <profile> <id>shade</id> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>all</shadedClassifierName> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sonar</id> <build> <plugins> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>run-benchmarks</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>ByteArrayJLBHBenchmark</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>net.openhft.chronicle.queue.bench.ByteArrayJLBHBenchmark</mainClass> </configuration> </execution> <execution> <id>MethodReaderBenchmark</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>net.openhft.chronicle.queue.bench.MethodReaderBenchmark</mainClass> </configuration> </execution> <execution> <id>QueueContendedWritesJLBHBenchmark</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>net.openhft.chronicle.queue.bench.QueueContendedWritesJLBHBenchmark</mainClass> </configuration> </execution> <execution> <id>QueueLargeMessageJLBHBenchmark</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>net.openhft.chronicle.queue.bench.QueueLargeMessageJLBHBenchmark</mainClass> </configuration> </execution> <execution> <id>QueueMultiThreadedJLBHBenchmark</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>net.openhft.chronicle.queue.bench.QueueMultiThreadedJLBHBenchmark</mainClass> </configuration> </execution> <execution> <id>QueueSingleThreadedJLBHBenchmark</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>net.openhft.chronicle.queue.bench.QueueSingleThreadedJLBHBenchmark</mainClass> </configuration> </execution> <execution /> </executions> <configuration> <systemProperties> <systemProperty> <key>jvm.resource.tracing</key> <value>false</value> </systemProperty> </systemProperties> <classpathScope>test</classpathScope> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <releases /> <id>third-party-release</id> <name>ThirdParty Repository</name> <url>https://nexus.chronicle.software/content/repositories/thirdparty/</url> </repository> <repository> <snapshots /> <id>chronicle-enterprise-snapshots</id> <name>Snapshot Repository</name> <url>https://nexus.chronicle.software/content/repositories/snapshots</url> </repository> <repository> <releases /> <id>chronicle-enterprise-release</id> <url>https://nexus.chronicle.software/content/repositories/releases</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>22.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.openhft</groupId> <artifactId>chronicle-values</artifactId> <version>2.23ea1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>tools</artifactId> <groupId>com.sun.java</groupId> </exclusion> <exclusion> <artifactId>javapoet</artifactId> <groupId>com.squareup</groupId> </exclusion> <exclusion> <artifactId>tools</artifactId> <groupId>com.sun</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>4.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.8.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>opentest4j</artifactId> <groupId>org.opentest4j</groupId> </exclusion> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.8.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.8.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.32</version> <scope>test</scope> </dependency> <dependency> <groupId>net.openhft</groupId> <artifactId>chronicle-test-framework</artifactId> <version>2.23ea2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>classgraph</artifactId> <groupId>io.github.classgraph</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>1.1.8.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>1.33</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jopt-simple</artifactId> <groupId>net.sf.jopt-simple</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>1.33</version> <scope>test</scope> </dependency> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-embedded</artifactId> <version>2.14.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jetty-webapp</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-server</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>net.openhft</groupId> <artifactId>third-party-bom</artifactId> <version>3.22.3</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>net.openhft</groupId> <artifactId>chronicle-bom</artifactId> <version>2.23ea27</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <properties> <sonar.organization>openhft</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <additionalparam>-Xdoclint:none</additionalparam> </properties> </project>