Skip to content

Commit d3802bf

Browse files
committed
fixed xml formatting
1 parent 610433d commit d3802bf

1 file changed

Lines changed: 91 additions & 92 deletions

File tree

image-processing/pom.xml

Lines changed: 91 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,97 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<artifactId>image-processing</artifactId>
7-
<version>1.0-SNAPSHOT</version>
8-
<name>image-processing</name>
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>image-processing</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<name>image-processing</name>
99

10-
<parent>
11-
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-modules</artifactId>
13-
<version>1.0.0-SNAPSHOT</version>
14-
</parent>
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
1515

16-
<dependencies>
17-
<dependency>
18-
<groupId>net.imagej</groupId>
19-
<artifactId>ij</artifactId>
20-
<version>${ij.version}</version>
21-
<exclusions>
22-
<exclusion>
23-
<artifactId>commons-logging</artifactId>
24-
<groupId>commons-logging</groupId>
25-
</exclusion>
26-
</exclusions>
27-
</dependency>
28-
<dependency>
29-
<groupId>org.openimaj</groupId>
30-
<artifactId>core-image</artifactId>
31-
<version>${core-image.version}</version>
32-
<exclusions>
33-
<exclusion>
34-
<artifactId>commons-logging</artifactId>
35-
<groupId>commons-logging</groupId>
36-
</exclusion>
37-
</exclusions>
38-
</dependency>
39-
<dependency>
40-
<groupId>org.openpnp</groupId>
41-
<artifactId>opencv</artifactId>
42-
<version>3.4.2-0</version>
43-
</dependency>
44-
<dependency>
45-
<groupId>com.twelvemonkeys.imageio</groupId>
46-
<artifactId>imageio-core</artifactId>
47-
<version>${imageio.version}</version>
48-
</dependency>
49-
<dependency>
50-
<groupId>com.twelvemonkeys.imageio</groupId>
51-
<artifactId>imageio-bmp</artifactId>
52-
<version>${imageio.version}</version>
53-
</dependency>
54-
<dependency>
55-
<groupId>net.sourceforge.tess4j</groupId>
56-
<artifactId>tess4j</artifactId>
57-
<version>${tess4j.version}</version>
58-
</dependency>
59-
<dependency>
60-
<groupId>org.bytedeco</groupId>
61-
<artifactId>tesseract-platform</artifactId>
62-
<version>${tesseract-platform.version}</version>
63-
</dependency>
64-
<dependency>
65-
<groupId>org.imgscalr</groupId>
66-
<artifactId>imgscalr-lib</artifactId>
67-
<version>${imgscalr-version}</version>
68-
</dependency>
69-
<dependency>
70-
<groupId>net.coobird</groupId>
71-
<artifactId>thumbnailator</artifactId>
72-
<version>${thumbnailator-version}</version>
73-
</dependency>
74-
<dependency>
75-
<groupId>com.github.downgoon</groupId>
76-
<artifactId>marvin</artifactId>
77-
<version>${marvin-version}</version>
78-
<type>pom</type>
79-
</dependency>
80-
<dependency>
81-
<groupId>com.github.downgoon</groupId>
82-
<artifactId>MarvinPlugins</artifactId>
83-
<version>${marvin-version}</version>
84-
</dependency>
85-
</dependencies>
86-
87-
<properties>
88-
<core-image.version>1.3.5</core-image.version>
89-
<ij.version>1.51h</ij.version>
90-
<imageio.version>3.3.2</imageio.version>
91-
<tess4j.version>4.5.1</tess4j.version>
92-
<tesseract-platform.version>4.1.0-1.5.2</tesseract-platform.version>
93-
<imgscalr-version>4.2</imgscalr-version>
94-
<thumbnailator-version>0.4.11</thumbnailator-version>
95-
<marvin-version>1.5.5</marvin-version>
96-
</properties>
16+
<dependencies>
17+
<dependency>
18+
<groupId>net.imagej</groupId>
19+
<artifactId>ij</artifactId>
20+
<version>${ij.version}</version>
21+
<exclusions>
22+
<exclusion>
23+
<artifactId>commons-logging</artifactId>
24+
<groupId>commons-logging</groupId>
25+
</exclusion>
26+
</exclusions>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.openimaj</groupId>
30+
<artifactId>core-image</artifactId>
31+
<version>${core-image.version}</version>
32+
<exclusions>
33+
<exclusion>
34+
<artifactId>commons-logging</artifactId>
35+
<groupId>commons-logging</groupId>
36+
</exclusion>
37+
</exclusions>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.openpnp</groupId>
41+
<artifactId>opencv</artifactId>
42+
<version>3.4.2-0</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>com.twelvemonkeys.imageio</groupId>
46+
<artifactId>imageio-core</artifactId>
47+
<version>${imageio.version}</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.twelvemonkeys.imageio</groupId>
51+
<artifactId>imageio-bmp</artifactId>
52+
<version>${imageio.version}</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>net.sourceforge.tess4j</groupId>
56+
<artifactId>tess4j</artifactId>
57+
<version>${tess4j.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.bytedeco</groupId>
61+
<artifactId>tesseract-platform</artifactId>
62+
<version>${tesseract-platform.version}</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.imgscalr</groupId>
66+
<artifactId>imgscalr-lib</artifactId>
67+
<version>${imgscalr-version}</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>net.coobird</groupId>
71+
<artifactId>thumbnailator</artifactId>
72+
<version>${thumbnailator-version}</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>com.github.downgoon</groupId>
76+
<artifactId>marvin</artifactId>
77+
<version>${marvin-version}</version>
78+
<type>pom</type>
79+
</dependency>
80+
<dependency>
81+
<groupId>com.github.downgoon</groupId>
82+
<artifactId>MarvinPlugins</artifactId>
83+
<version>${marvin-version}</version>
84+
</dependency>
85+
</dependencies>
9786

87+
<properties>
88+
<core-image.version>1.3.5</core-image.version>
89+
<ij.version>1.51h</ij.version>
90+
<imageio.version>3.3.2</imageio.version>
91+
<tess4j.version>4.5.1</tess4j.version>
92+
<tesseract-platform.version>4.1.0-1.5.2</tesseract-platform.version>
93+
<imgscalr-version>4.2</imgscalr-version>
94+
<thumbnailator-version>0.4.11</thumbnailator-version>
95+
<marvin-version>1.5.5</marvin-version>
96+
</properties>
9897
</project>

0 commit comments

Comments
 (0)