querqy-for-lucene
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.querqy</groupId> <artifactId>querqy-for-lucene</artifactId> <version>5.9.lucene980.0</version> </dependency>
<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> <!-- Do not add a <parent>..</parent> here as we want to release querqy-core and querqy-for lucene separately. The pom.xml in the parent directory only serves as a help to run a multi-module build when developing new core and lucene/solr features at the same time. --> <groupId>org.querqy</groupId> <artifactId>querqy-for-lucene</artifactId> <version>5.9.lucene980.0</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Querqy library for query rewriting: Lucene parent</description> <url>https://querqy.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>renekrie</id> <name>René Kriegler</name> <email>post@rene-kriegler.com</email> <url>https://github.com/renekrie</url> </developer> <developer> <id>mkr</id> <name>Matthias Krüger</name> <url>https://github.com/mkr</url> </developer> <developer> <id>JohannesDaniel</id> <name>Johannes Peter</name> <email>johannesdaniel.peter@gmx.de</email> <url>https://github.com/JohannesDaniel</url> </developer> </developers> <scm> <url>git@github.com:querqy/querqy.git</url> <connection>scm:git:git@github.com:querqy/querqy.git</connection> <developerConnection>scm:git:git@github.com:querqy/querqy.git</developerConnection> <tag>querqy-for-lucene-5.9.lucene980.0</tag> </scm> <prerequisites> <maven>3.3.0</maven> </prerequisites> <properties> <maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version> <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <maven-jar-plugin.version>3.1.2</maven-jar-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> <maven-failsafe-plugin.version>3.5.2</maven-failsafe-plugin.version> <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>11</java.version> <junit.version>4.13.2</junit.version> <hamcrest.version>3.0</hamcrest.version> <mockito.version>5.15.2</mockito.version> <assertj-core.version>3.27.3</assertj-core.version> <skipITs>true</skipITs> <querqy.core.version>3.18.2</querqy.core.version> <lucene.version>9.11.1</lucene.version> <commons.io.version>2.15.1</commons.io.version> </properties> <modules> <module>querqy-lucene</module> <module>querqy-solr</module> </modules> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj-core.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <systemPropertyVariables> <tests.codec>Lucene99</tests.codec> <java.security.egd>file:/dev/./urandom</java.security.egd> <!-- Use narrow US-ASCII as default Java character set (via file.encoding system property) to increase the chance of catching code that relies on the JDK default encoding --> <argLine>-Dfile.encoding=US-ASCII</argLine> </systemPropertyVariables> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <release>${java.version}</release> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura-maven-plugin.version}</version> <configuration> <instrumentation> <excludes> <exclude>**/*Test.class</exclude> </excludes> </instrumentation> </configuration> <executions> <execution> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>release</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> </build> </profile> </profiles> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura-maven-plugin.version}</version> </plugin> </plugins> </reporting> <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> </project>