Created
January 21, 2013 00:09
-
-
Save davidmc24/4582729 to your computer and use it in GitHub Desktop.
A sample POM for waffle-jna 1.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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.dblock.waffle</groupId> | |
| <artifactId>waffle-jna</artifactId> | |
| <version>1.5</version> | |
| <packaging>jar</packaging> | |
| <name>waffle-jna</name> | |
| <description>WAFFLE JNA implementation</description> | |
| <url>http://dblock.github.com/waffle/</url> | |
| <dependencies> | |
| <dependency> | |
| <groupId>net.java.dev.jna</groupId> | |
| <artifactId>platform</artifactId> | |
| <version>3.5.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.servlet</groupId> | |
| <artifactId>servlet-api</artifactId> | |
| <version>2.5</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>slf4j-api</artifactId> | |
| <version>1.7.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>13.0.1</version> | |
| </dependency> | |
| </dependencies> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think this should depend on jna 3.5.1. I think the latest waffle 1.5 release was built using jna 3.5.1 (maybe dB can confirm).