opensearch-analysis-fess
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codelibs.opensearch</groupId> <artifactId>opensearch-analysis-fess</artifactId> <version>3.2.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"> <name>opensearch-analysis-fess</name> <modelVersion>4.0.0</modelVersion> <groupId>org.codelibs.opensearch</groupId> <artifactId>opensearch-analysis-fess</artifactId> <version>3.2.0</version> <packaging>jar</packaging> <description>This plugin provides an analysis library for Fess, enabling custom analyzers, tokenizers, and filters for OpenSearch to enhance full-text search capabilities and support Fess-specific linguistic processing.</description> <url>https://github.com/codelibs/opensearch-analysis-fess</url> <inceptionYear>2011</inceptionYear> <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> <organization> <name>CodeLibs Project</name> <url>https://www.codelibs.org/</url> </organization> <developers> <developer> <id>shinsuke</id> <name>Shinsuke Sugaya</name> <email>shinsuke.sugaya@codelibs.co</email> <organization>CodeLibs Inc.</organization> <organizationUrl>https://codelibs.co</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:codelibs/opensearch-analysis-fess.git</connection> <developerConnection>scm:git:git@github.com:codelibs/opensearch-analysis-fess.git</developerConnection> <url>git@github.com:codelibs/opensearch-analysis-fess.git</url> <tag>opensearch-analysis-fess-3.2.0</tag> </scm> <properties> <opensearch.version>3.2.0</opensearch.version> <opensearch.runner.version>3.2.0.0</opensearch.runner.version> <opensearch.plugin.classname>org.codelibs.opensearch.fess.FessAnalysisPlugin</opensearch.plugin.classname> <maven.compiler.target>21</maven.compiler.target> <lucene.version>10.2.2</lucene.version> <log4j.version>2.21.0</log4j.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <release>${maven.compiler.target}</release> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>5.0.0</version> <configuration> <header>https://www.codelibs.org/assets/license/header.txt</header> <properties> <year>2025</year> </properties> <includes> <include>src/**/*.java</include> </includes> <encoding>UTF-8</encoding> <headerDefinitions> <headerDefinition>https://www.codelibs.org/assets/license/header-definition-2.xml</headerDefinition> </headerDefinitions> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <configuration> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${project.build.directory}/releases/</outputDirectory> <descriptors> <descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</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> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>snapshots.central.sonatype.com</id> <url>https://central.sonatype.com/repository/maven-snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>codelibs.org</id> <name>CodeLibs Repository</name> <url>https://maven.codelibs.org/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.opensearch</groupId> <artifactId>opensearch</artifactId> <version>${opensearch.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codelibs.opensearch</groupId> <artifactId>opensearch-runner</artifactId> <version>${opensearch.runner.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> </project>