hyperscan
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gliwka.hyperscan</groupId> <artifactId>hyperscan</artifactId> <version>5.4.11-3.0.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.gliwka.hyperscan</groupId> <artifactId>hyperscan</artifactId> <version>5.4.11-3.0.0</version> <name>hyperscan-java</name> <description>Java bindings for the high-performance multiple regular expression library hyperscan</description> <url>https://github.com/gliwka/hyperscan-java</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>3-Clause BSD License</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> </license> </licenses> <developers> <developer> <name>Matthias Gliwka</name> <email>matthias@gliwka.eu</email> </developer> <developer> <name>Elias Levy</name> <email>fearsome.lucidity@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/gliwka/hyperscan-java.git</connection> <developerConnection>scm:git:ssh://github.com:gliwka/hyperscan-java.git </developerConnection> <url>https://github.com/gliwka/hyperscan-java</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <repositories> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <serverId>ossrh</serverId> <stagingProfileId>487fa319ba2685</stagingProfileId> </configuration> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sign-maven-plugin</artifactId> <version>1.0.1</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.6</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <configuration> <show>public</show> <nohelp>true</nohelp> <header>hyperscan-java, ${project.version}</header> <footer>hyperscan-java, ${project.version}</footer> <doctitle>hyperscan-java, ${project.version}</doctitle> </configuration> <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.11.0</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <version>3.2.1</version> <configuration> <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version} </checkinComment> <content>${project.reporting.outputDirectory}/apidocs</content> <skipDeletedFiles>true</skipDeletedFiles> <pubScmUrl>scm:git:git@github.com:cerebuild/hyperscan-java.git</pubScmUrl> <scmBranch>gh-pages</scmBranch> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.gliwka.hyperscan</groupId> <artifactId>native</artifactId> <version>5.4.11-2.0.0</version> </dependency> <dependency> <groupId>com.gliwka.hyperscan</groupId> <artifactId>native</artifactId> <version>5.4.11-2.0.0</version> <classifier>linux-x86_64</classifier> </dependency> <dependency> <groupId>com.gliwka.hyperscan</groupId> <artifactId>native</artifactId> <version>5.4.11-2.0.0</version> <classifier>linux-arm64</classifier> </dependency> <dependency> <groupId>com.gliwka.hyperscan</groupId> <artifactId>native</artifactId> <version>5.4.11-2.0.0</version> <classifier>macosx-x86_64</classifier> </dependency> <dependency> <groupId>com.gliwka.hyperscan</groupId> <artifactId>native</artifactId> <version>5.4.11-2.0.0</version> <classifier>macosx-arm64</classifier> </dependency> <dependency> <groupId>org.bytedeco</groupId> <artifactId>javacpp</artifactId> <version>1.5.9</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.7.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.7.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.7.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>1.37</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>1.37</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> <scope>provided</scope> </dependency> </dependencies> </project>