czdb-search
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.cz88</groupId> <artifactId>czdb-search</artifactId> <version>1.0.2.10</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>net.cz88</groupId> <artifactId>czdb-search</artifactId> <version>1.0.2.10</version> <packaging>jar</packaging> <name>czdb-search</name> <url>https://github.com/tagphi/czdb-search-java/</url> <description>This project is a Java library for searching IP address-related data in a CZDB database. It supports three types of search algorithms: memory search, binary search, and B-tree search.</description> <developers> <developer> <name>Craig Liu</name> <email>cong.liu@rtbasia.com</email> <organization>cz88</organization> <organizationUrl>https://www.cz88.net/</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>git@github.com:tagphi/czdb-search-java.git</url> <connection>scm:git:git@github.com:tagphi/czdb-search-java.git</connection> <developerConnection>scm:git:git@github.com:tagphi/czdb-search-java.git</developerConnection> </scm> <issueManagement> <url>https://github.com/tagphi/czdb-search-java/issues</url> <system>GitHub Issues</system> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.release>8</maven.compiler.release> <!-- Dependency versions --> <junit.version>4.13.2</junit.version> <commons-cli.version>1.5.0</commons-cli.version> <msgpack-core.version>0.9.8</msgpack-core.version> <!-- Plugin versions --> <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version> <maven-shade-plugin.version>3.4.1</maven-shade-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <central-publishing-maven-plugin.version>0.4.0</central-publishing-maven-plugin.version> <!-- Build properties --> <javadoc.opts>-Xdoclint:none -quiet</javadoc.opts> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>${commons-cli.version}</version> </dependency> <dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack-core</artifactId> <version>${msgpack-core.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <release>${maven.compiler.release}</release> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalOptions>${javadoc.opts}</additionalOptions> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.1.2</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> </plugins> </build> <profiles> <!-- Profile for creating fat JAR --> <profile> <id>fatjar</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>net.cz88.czdb.SearcherTest</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- Profile for publishing to TAGPHI repository --> <profile> <id>tagphi-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <configuration> <keyname>8E4C1E1FBB513CA5</keyname> <gpgArguments> <arg>--batch</arg> <arg>--yes</arg> <arg>--passphrase</arg> <arg>${gpg.passphrase}</arg> </gpgArguments> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- Profile for publishing to Maven Central --> <profile> <id>central-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <configuration> <keyname>8E4C1E1FBB513CA5</keyname> <gpgArguments> <arg>--batch</arg> <arg>--yes</arg> <arg>--passphrase</arg> <arg>${gpg.passphrase}</arg> </gpgArguments> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>snapshots</id> <url>http://mvn.rtbasia.com/nexus/content/repositories/snapshots/</url> </snapshotRepository> <!-- TAGPHI repository for releases --> <repository> <id>TAGPHI</id> <url>https://mvn.rtbasia.com/nexus/content/repositories/TAGPHI</url> </repository> </distributionManagement> </project>