<?xml version="1.0" encoding="UTF-8"?>
<!-- SPDX-FileCopyrightText: 2026 Sergei Sokolov <mohterbaord@gmail.com> -->
<!-- SPDX-License-Identifier: Apache-2.0 -->
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>dev.mohterbaord</groupId>
    <artifactId>java-library-parent</artifactId>
    <version>3.0</version>
  </parent>

  <groupId>dev.mohterbaord.util</groupId>
  <artifactId>unicode-encoding-detector</artifactId>
  <version>0.2.0</version>

  <name>Unicode Encoding Detector</name>
  <description>
    Unicode encoding detection utility for text streams for Java 21+
  </description>
  <url>https://codeberg.org/mohterbaord/unicode-encoding-detector</url>
  <organization>
    <name>Sergei Sokolov</name>
  </organization>
  <inceptionYear>2026</inceptionYear>

  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <id>mohterbaord</id>
      <name>Sergei Sokolov</name>
      <email>mohterbaord@gmail.com</email>
      <url>https://www.mohterbaord.dev</url>
      <roles>
        <role>Project lead</role>
        <role>Developer</role>
        <role>Maintainer</role>
      </roles>
    </developer>
  </developers>

  <scm>
    <url>https://codeberg.org/mohterbaord/unicode-encoding-detector</url>
    <connection>scm:git:https://codeberg.org/mohterbaord/unicode-encoding-detector.git</connection>
    <developerConnection>scm:git:ssh://git@codeberg.org/mohterbaord/unicode-encoding-detector.git</developerConnection>
    <tag>0.2.0</tag>
  </scm>

  <dependencies>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>
