langchain4j-embeddings-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-embeddings-parent</artifactId> <version>1.0.1-beta6</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>dev.langchain4j</groupId> <artifactId>langchain4j-embeddings-parent</artifactId> <version>1.0.1-beta6</version> <packaging>pom</packaging> <name>langchain4j-embeddings parent POM</name> <description>Parent POM for langchain4j-embeddings submodules</description> <url>https://github.com/langchain4j/langchain4j-embeddings/tree/main</url> <modules> <module>langchain4j-embeddings</module> <module>langchain4j-embeddings-all-minilm-l6-v2</module> <module>langchain4j-embeddings-all-minilm-l6-v2-q</module> <module>langchain4j-embeddings-bge-small-en</module> <module>langchain4j-embeddings-bge-small-en-q</module> <module>langchain4j-embeddings-bge-small-en-v15</module> <module>langchain4j-embeddings-bge-small-en-v15-q</module> <module>langchain4j-embeddings-bge-small-zh</module> <module>langchain4j-embeddings-bge-small-zh-q</module> <module>langchain4j-embeddings-bge-small-zh-v15</module> <module>langchain4j-embeddings-bge-small-zh-v15-q</module> <module>langchain4j-embeddings-e5-small-v2</module> <module>langchain4j-embeddings-e5-small-v2-q</module> </modules> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>5.11.4</junit.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-core</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.2</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> </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> <autoPublish>false</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce</id> <configuration> <rules> <dependencyConvergence/> <requireUpperBoundDeps/> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.sundr</groupId> <artifactId>sundr-maven-plugin</artifactId> <version>0.103.1</version> <executions> <execution> <goals> <goal>generate-bom</goal> </goals> <configuration> <boms> <bom> <artifactId>langchain4j-embeddings-bom</artifactId> <name>LangChain4j Embeddings :: BOM</name> <description>Bill of Materials POM for getting full, complete set of compatible versions of LangChain4j Embeddings modules</description> <properties> <skipStagingRepositoryClose>true</skipStagingRepositoryClose> <sonar.skip>true</sonar.skip> </properties> </bom> </boms> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <configuration> <flattenMode>ossrh</flattenMode> <pomElements> <build>remove</build> <repositories>remove</repositories> </pomElements> </configuration> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>dliubarskyi</id> <name>Dmytro Liubarskyi</name> <email>info@langchain4j.dev</email> <url>https://github.com/dliubarskyi</url> </developer> </developers> <scm> <url>https://github.com/langchain4j/langchain4j-embeddings/tree/main</url> <connection>scm:git:git://github.com/langchain4j/langchain4j-embeddings.git</connection> <developerConnection>scm:git:git@github.com:langchain4j/langchain4j-embeddings.git</developerConnection> </scm> <profiles> <profile> <id>sign</id> <activation> <property> <name>sign</name> </property> </activation> <build> <plugins> <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> </plugins> </build> </profile> <profile> <id>compliance</id> <activation> <property> <name>compliance</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.honton.chas</groupId> <artifactId>license-maven-plugin</artifactId> <version>0.0.6</version> <executions> <execution> <goals> <goal>compliance</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>