commerce-search-processors
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.hcl.commerce</groupId> <artifactId>commerce-search-processors</artifactId> <version>9.1.18.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>com.hcl.commerce</groupId> <artifactId>commerce-search-processors</artifactId> <version>9.1.18.0</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> <execution> <id>empty-sources-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>sources</classifier> <classesDirectory>${basedir}/sources</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <configuration> <skipSource>true</skipSource> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <sourcepath>src/main/java</sourcepath> <skipSource>true</skipSource> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <packaging>jar</packaging> <name>Query Api</name> <description>Library containing HCL Query Api</description> <url>https://github.com/HCL-TECH-SOFTWARE/hcl-commerce-search</url> <licenses> <license> <name>License</name> <url>https://github.com/HCL-TECH-SOFTWARE/HCL-TECH-SOFTWARE.github.io/blob/main/LICENSE.md</url> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshot</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/services/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:git://github.com/HCL-TECH-SOFTWARE/hcl-commerce-search.git</connection> <developerConnection>scm:git:ssh://github.com:HCL-TECH-SOFTWARE/hcl-commerce-search.git</developerConnection> <url>https://github.com/HCL-TECH-SOFTWARE/hcl-commerce-search</url> </scm> <developers> <developer> <name>HCL Commerce Search</name> <email>hcl-commerce-search@hcl.com</email> <organization>com.hcl.commerce</organization> <organizationUrl>https://github.com/HCL-TECH-SOFTWARE/hcl-commerce-search</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>