<?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>org.rogmann.jsmud</groupId>
  <artifactId>jsmud-analysis</artifactId>
  <version>0.6.0</version>
  <name>jsmud-analysis</name>
  <description>Java simulator and multi-user debugger in order to analyze execution of bytecode</description>
  <url>https://github.com/srogmann/jsmud-analysis/</url>
  <inceptionYear>2021</inceptionYear>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>srogmann</id>
      <name>Sascha Rogmann</name>
      <roles>
        <role>Creator</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/srogmann/jsmud-analysis.git</connection>
    <developerConnection>scm:git:ssh://github.com:srogmann/jsmud-analysis.git</developerConnection>
    <url>https://github.com/srogmann/jsmud-analysis/tree/master</url>
  </scm>
  <issueManagement>
    <url>https://github.com/srogmann/jsmud-analysis/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm</artifactId>
      <version>9.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-tree</artifactId>
      <version>9.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-analysis</artifactId>
      <version>9.2</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
