java-tutorials/image-processing/pom.xml

28 lines
949 B
XML
Raw Normal View History

2016-12-18 14:59:24 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2016-12-26 11:09:10 -05: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">
2016-12-18 14:59:24 -05:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
2016-12-26 11:09:10 -05:00
<artifactId>image-processing</artifactId>
2016-12-18 14:59:24 -05:00
<version>1.0-SNAPSHOT</version>
2016-12-23 19:27:48 -05:00
<properties>
<core-image.version>1.3.5</core-image.version>
<ij.version>1.51h</ij.version>
</properties>
2016-12-18 14:59:24 -05:00
<dependencies>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
2016-12-23 19:27:48 -05:00
<version>${ij.version}</version>
2016-12-18 14:59:24 -05:00
</dependency>
2016-12-23 19:19:33 -05:00
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>core-image</artifactId>
2016-12-23 19:27:48 -05:00
<version>${core-image.version}</version>
2016-12-23 19:19:33 -05:00
</dependency>
2016-12-18 14:59:24 -05:00
</dependencies>
2016-12-26 11:09:10 -05:00
2016-12-18 14:59:24 -05:00
</project>