<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>com.eventarelli.syslog</groupId>
  <artifactId>java-syslog</artifactId>
  <version>1.0.0</version>
  <name>java-syslog</name>
  <description>Log to syslog from Java using Java Native Access (JNA).</description>
  <url>https://github.com/mbucc/java-syslog</url>
  <licenses>
    <license>
      <name>The 2-Clause BSD License</name>
      <url>https://github.com/mbucc/java-syslog/blob/master/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>mkbucc</id>
      <name>Mark Bucciarelli</name>
      <email>mark@eventarelli.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/mbucc/java-syslog.git</connection>
    <developerConnection>scm:git:https://github.com/mbucc/java-syslog.git</developerConnection>
    <url>https://github.com/mbucc/java-syslog</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>net.java.dev.jna</groupId>
      <artifactId>jna</artifactId>
      <version>4.5.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.1.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
