fastsearch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.albilu</groupId> <artifactId>fastsearch</artifactId> <version>1.0.2</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>io.github.albilu</groupId> <artifactId>fastsearch</artifactId> <version>${next.version}</version> <packaging>nbm</packaging> <name>fast-search</name> <description>Netbeans Faster Search Module based on Rust</description> <url>${git.url}</url> <developers> <developer> <name>albilu</name> </developer> </developers> <scm> <connection>scm:git:${git.link}</connection> <developerConnection>scm:git:${git.link}</developerConnection> <url>${git.url}</url> <tag>master</tag> </scm> <licenses> <license> <name>GNU General Public License v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>keytool-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>generateKeyPair</id> <goals> <goal>generateKeyPair</goal> </goals> <phase>generate-resources</phase> </execution> </executions> <configuration> <keystore>${keystore}</keystore> <storepass>${project.artifactId}</storepass> <keypass>${project.artifactId}</keypass> <alias>${project.artifactId}</alias> <dname>cn=${project.scm.developerConnection}, ou=None, L=Nice, ST=France, o=${project.artifactId}, c=FR</dname> <sigalg>SHA1withDSA</sigalg> <ext /> <validity>2000</validity> <keyalg>DSA</keyalg> <keysize>1024</keysize> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> <arg>--no-tty</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.netbeans.utilities</groupId> <artifactId>nbm-maven-plugin</artifactId> <version>4.8</version> <extensions>true</extensions> <configuration> <keystore>${keystore}</keystore> <keystorealias>${project.artifactId}</keystorealias> <keystorepassword>${project.artifactId}</keystorepassword> <verifyIntegrity>true</verifyIntegrity> <verifyRuntime>warn</verifyRuntime> <requiresRestart>true</requiresRestart> <author>albilu</author> <homePageUrl>https://github.com/albilu/${project.name}</homePageUrl> <licenseFile>LICENSE</licenseFile> <licenseName>GNU General Public License v3.0</licenseName> <nbmResources> <nbmResource> <directory>ripgrep/bins</directory> <targetPath>ripgrep/bins</targetPath> <includes> <include>**/**</include> </includes> </nbmResource> </nbmResources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>1.8</source> <target>1.8</target> <fork>true</fork> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> <debug>true</debug> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.14.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.17.0</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-api-annotations-common</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-actions</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-dialogs</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-filesystems</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-util-lookup</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-nodes</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-api-progress</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-text</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-windows</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-loaders</artifactId> <version>${netbeans.release.version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-io</artifactId> <version>${netbeans.release.version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-awt</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-explorer</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-swing-outline</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-util-ui</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-util</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-modules-queries</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-filesystems-nb</artifactId> <version>${netbeans.release.version}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-api-search</artifactId> <version>${netbeans.release.version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-modules-editor-document</artifactId> <version>${netbeans.release.version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-modules-csl-api</artifactId> <version>${netbeans.release.version}</version> <type>jar</type> </dependency> </dependencies> <properties> <keystore>target/keystore</keystore> <netbeans.release.version>RELEASE210</netbeans.release.version> <next.version>1.0.2</next.version> <git.url>https://github.com/albilu/${project.name}</git.url> <git.link>https://github.com/albilu/${project.name}.git</git.link> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <profiles> <profile> <id>dev</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>keytool-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>generateKeyPair</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>