<?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>com.top-logic</groupId>
    <artifactId>tl-parent-core</artifactId>
    <version>7.11.0</version>
    <relativePath />
  </parent>
  <artifactId>tl-ai-parent</artifactId>
  <licenses>
    <license>
      <name>LicenseRef-BOS-TopLogic-1.0</name>
      <url>https://github.com/top-logic/.github/blob/main/LICENSES/LicenseRef-BOS-TopLogic-1.0.md</url>
    </license>
  </licenses>
  <version>1.0.12</version>
  <packaging>pom</packaging>
  <scm>
    <connection>scm:git:https://github.com/top-logic/tl-ai.git</connection>
    <developerConnection>scm:git:http://tl.bos.local:3000/TopLogic/tl-ai.git</developerConnection>
    <url>https://github.com/top-logic/tl-ai</url>
    <tag>TL_1.0.12</tag>
  </scm>
  <modules>
    <module>tl-ai-mcp-server</module>
    <module>tl-chat</module>
    <module>tl-ai-demo</module>
    <module>tl-ai-vector-index</module>
    <module>tl-ai-tool-api</module>
    <module>tl-ai-core</module>
  </modules>
  <properties>
    <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
  </properties>
  <dependencies />
  <build>
    <plugins>
      <!--
        7.11 maintenance branch: TopLogic 7.11's ResourcesModule reads .properties bundles as
        ISO-8859-1. The bundles under src/main/java/META-INF are re-encoded to ISO-8859-1 (with
        \uXXXX escapes for non-Latin-1 characters). Pin the resource-plugin to ISO-8859-1 so any
        filtered copy keeps that encoding and the packaged jar bundles do not regress to UTF-8.
      -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <configuration>
          <propertiesEncoding>ISO-8859-1</propertiesEncoding>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
