trapping/pom.xml

58 lines
1.6 KiB
XML
Raw Normal View History

2013-07-10 15:07:58 +04:00
<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>hep.DataForge</groupId>
<artifactId>Trapping</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Trapping</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
2016-03-30 16:01:28 +03:00
<version>2.7</version>
2013-07-10 15:07:58 +04:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2016-03-30 16:01:28 +03:00
<version>2.5.1</version>
2013-07-10 15:07:58 +04:00
<configuration>
2016-03-30 16:01:28 +03:00
<source>1.8</source>
<target>1.8</target>
2013-07-10 15:07:58 +04:00
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
2016-03-30 16:01:28 +03:00
<version>3.5</version>
2013-07-10 15:07:58 +04:00
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>3.5.2</version>
</dependency>
</dependencies>
</project>