85 lines
3.0 KiB
XML
85 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Waffle (https://github.com/Waffle/waffle)
|
|
|
|
Copyright (c) 2010-2018 Application Security, Inc.
|
|
|
|
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
|
|
Public License v1.0 which accompanies this distribution, and is available at
|
|
https://www.eclipse.org/legal/epl-v10.html.
|
|
|
|
Contributors: Application Security, Inc.
|
|
|
|
-->
|
|
<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>
|
|
|
|
<parent>
|
|
<groupId>com.github.waffle</groupId>
|
|
<artifactId>waffle-parent</artifactId>
|
|
<version>1.9.1</version>
|
|
</parent>
|
|
|
|
<artifactId>waffle-jna</artifactId>
|
|
<version>1.9.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>waffle-jna</name>
|
|
<description>WAFFLE JNA implementation</description>
|
|
<url>https://waffle.github.com/waffle/</url>
|
|
|
|
<scm>
|
|
<connection>scm:git:ssh://git@github.com/waffle/waffle.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/waffle/waffle.git</developerConnection>
|
|
<url>https://github.com/Waffle/waffle</url>
|
|
<tag>waffle-parent-1.9.1</tag>
|
|
</scm>
|
|
|
|
<properties>
|
|
<caffeine.version>2.6.2</caffeine.version>
|
|
<jna.version>4.5.1</jna.version>
|
|
<servlet.version>4.0.1</servlet.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>${jna.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
<version>${jna.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>${servlet.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
<artifactId>caffeine</artifactId>
|
|
<version>${caffeine.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|