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"
|
2018-07-12 03:04:54 -04:00
|
|
|
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>
|
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
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>
|
2017-04-19 10:14:10 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
2017-05-12 14:32:54 -04:00
|
|
|
</exclusions>
|
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>
|
2017-04-19 10:14:10 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
2017-05-12 14:32:54 -04:00
|
|
|
</exclusions>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
2017-05-23 14:50:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
|
|
<artifactId>imageio-core</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${imageio.version}</version>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
2017-05-23 14:50:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
|
|
<artifactId>imageio-bmp</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${imageio.version}</version>
|
2016-12-23 19:19:33 -05:00
|
|
|
</dependency>
|
2016-12-18 14:59:24 -05:00
|
|
|
</dependencies>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
|
|
|
<properties>
|
2018-04-26 02:50:35 -04:00
|
|
|
<core-image.version>1.3.5</core-image.version>
|
|
|
|
<ij.version>1.51h</ij.version>
|
2018-04-26 08:37:47 -04:00
|
|
|
<imageio.version>3.3.2</imageio.version>
|
2018-04-26 02:50:35 -04:00
|
|
|
</properties>
|
2017-05-12 14:32:54 -04:00
|
|
|
|
2016-12-18 14:59:24 -05:00
|
|
|
</project>
|