<?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>com.github.gnl</groupId>
  <artifactId>playback</artifactId>
  <packaging>jar</packaging>
  <name>playback</name>
  <description>Print debugging on steroids – #&gt;(tag and trace any Clojure(-Script)
        form to tap&gt; and Portal with instant last-input function replay on eval)
    </description>
  <url>https://github.com/gnl/playback</url>
  <licenses>
    <license>
      <name>Eclipse Public License version 2</name>
      <url>https://www.eclipse.org/legal/epl-2.0</url>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/gnl/playback</url>
    <connection>scm:git:git://github.com/gnl/playback.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/gnl/playback.git</developerConnection>
    <tag>v0.3.0-SNAPSHOT</tag>
  </scm>
  <distributionManagement>
    <repository>
      <id>clojars</id>
      <name>Clojars repository</name>
      <url>https://clojars.org/repo</url>
    </repository>
  </distributionManagement>
  <repositories>
    <repository>
      <id>clojars</id>
      <url>https://repo.clojars.org/</url>
    </repository>
  </repositories>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>3.1</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
            <configuration>
              <keyname>EA4E52DD8F4A7AD2F6D1F1FBE1A18DCD43ECC7C9</keyname>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.clojure</groupId>
      <artifactId>clojure</artifactId>
      <version>1.11.1</version>
    </dependency>
    <dependency>
      <groupId>djblue</groupId>
      <artifactId>portal</artifactId>
      <version>0.42.1</version>
    </dependency>
    <dependency>
      <groupId>com.github.gnl</groupId>
      <artifactId>debux</artifactId>
      <version>0.8.3-3</version>
    </dependency>
  </dependencies>
  <version>0.3.0-SNAPSHOT</version>
</project>
