<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>cn.datask</groupId>
  <artifactId>dat-parent</artifactId>
  <version>0.7.1</version>
  <packaging>pom</packaging>
  <name>DAT :</name>
  <description>Asking yours data in a natural language way through pre-modeling (data models and semantic models).</description>
  <url>https://github.com/junjiem/dat</url>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Junjie.M</name>
      <email>118170653@qq.com</email>
      <organization>cn.datask</organization>
      <roles>
        <role>Project Manager</role>
        <role>Architect</role>
      </roles>
    </developer>
  </developers>
  <modules>
    <module>dat-core</module>
    <module>dat-embedders</module>
    <module>dat-rerankers</module>
    <module>dat-storers</module>
    <module>dat-llms</module>
    <module>dat-adapters</module>
    <module>dat-agents</module>
    <module>dat-sdk</module>
    <module>dat-servers</module>
    <module>dat-cli</module>
  </modules>
  <scm>
    <connection>scm:git:https://github.com/junjiem/dat.git</connection>
    <developerConnection>scm:git:ssh://git@github.com:junjiem/dat.git</developerConnection>
    <url>https://github.com/junjiem/dat</url>
  </scm>
  <issueManagement>
    <system>github</system>
    <url>https://github.com/junjiem/dat/issues</url>
  </issueManagement>
  <properties>
    <maven.compiler.source>17</maven.compiler.source>
    <langchain4j-community.version>1.4.0-beta10</langchain4j-community.version>
    <jackson.version>2.18.3</jackson.version>
    <junit.jupiter.version>5.10.0</junit.jupiter.version>
    <revision>0.7.1</revision>
    <langchain4j.version>1.4.0</langchain4j.version>
    <lombok.version>1.18.38</lombok.version>
    <maven.compiler.target>17</maven.compiler.target>
    <langchain4j-beta.version>1.4.0-beta10</langchain4j-beta.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <langchain4j-embeddings.version>1.4.0-beta10</langchain4j-embeddings.version>
    <logback.version>1.5.18</logback.version>
  </properties>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>3.1.4</version>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>3.5.3</version>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>3.11.2</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <doclint>none</doclint>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>3.11.2</version>
        <reportSets>
          <reportSet>
            <id>aggregate</id>
            <reports>
              <report>aggregate</report>
            </reports>
            <inherited>false</inherited>
          </reportSet>
          <reportSet>
            <reports>
              <report>javadoc</report>
            </reports>
          </reportSet>
        </reportSets>
        <configuration></configuration>
      </plugin>
    </plugins>
  </reporting>
  <profiles>
    <profile>
      <id>central</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.14.1</version>
            <configuration>
              <source>${maven.compiler.source}</source>
              <target>${maven.compiler.target}</target>
            </configuration>
          </plugin>
          <plugin>
            <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.codehaus.mojo</groupId>
            <artifactId>flatten-maven-plugin</artifactId>
            <version>1.5.0</version>
            <executions>
              <execution>
                <id>flatten</id>
                <phase>process-resources</phase>
                <goals>
                  <goal>flatten</goal>
                </goals>
              </execution>
              <execution>
                <id>flatten.clean</id>
                <phase>clean</phase>
                <goals>
                  <goal>clean</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <updatePomFile>true</updatePomFile>
              <flattenMode>resolveCiFriendliesOnly</flattenMode>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>3.2.8</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <gpgArguments>
                <arg>--pinentry-mode</arg>
                <arg>loopback</arg>
              </gpgArguments>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.sonatype.central</groupId>
            <artifactId>central-publishing-maven-plugin</artifactId>
            <version>0.9.0</version>
            <extensions>true</extensions>
            <configuration>
              <publishingServerId>central</publishingServerId>
              <autoPublish>true</autoPublish>
              <waitUntil>published</waitUntil>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
