<?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>io.github.davidalmeidac</groupId>
    <artifactId>sealed-env-parent</artifactId>
    <version>0.1.0</version>
  </parent>

  <artifactId>sealed-env-core</artifactId>
  <packaging>jar</packaging>

  <name>sealed-env (core)</name>
  <description>
    Pure-Java reader/writer for the .env.sealed v1 format. Implements both
    Argon2id and scrypt, AES-256-GCM, HKDF, HMAC-SHA256, and TOTP unsealing.
    No Spring dependencies — usable from any Java 17+ application.
  </description>

  <dependencies>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk18on</artifactId>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
    </dependency>

    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
