Skip to content

Commit 65582e2

Browse files
committed
initial
0 parents  commit 65582e2

File tree

1 file changed

+145
-0
lines changed

1 file changed

+145
-0
lines changed

pom.xml

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>com.itextpdf</groupId>
7+
<artifactId>root</artifactId>
8+
<version>7.1.0</version>
9+
<relativePath />
10+
</parent>
11+
12+
<artifactId>ocr</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
15+
<name>OCR</name>
16+
<description>OCR is an iText 7 add-on that lets you to parse text from provided images and adds it to PDF.</description>
17+
18+
<properties>
19+
<itext.version>${project.parent.version}</itext.version>
20+
<java.version>1.8</java.version>
21+
<maven.compiler.source>1.8</maven.compiler.source>
22+
<maven.compiler.target>1.8</maven.compiler.target>
23+
</properties>
24+
25+
<repositories>
26+
<repository>
27+
<snapshots>
28+
<enabled>true</enabled>
29+
</snapshots>
30+
<id>itext-snapshot</id>
31+
<name>iText Repository - snapshots</name>
32+
<url>https://repo.itextsupport.com/snapshot</url>
33+
</repository>
34+
<repository>
35+
<snapshots>
36+
<enabled>false</enabled>
37+
</snapshots>
38+
<id>itext-releases</id>
39+
<name>iText Repository - releases</name>
40+
<url>https://repo.itextsupport.com/releases</url>
41+
</repository>
42+
</repositories>
43+
44+
<dependencies>
45+
<dependency>
46+
<groupId>com.itextpdf</groupId>
47+
<artifactId>forms</artifactId>
48+
<version>${itext.version}</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.itextpdf</groupId>
52+
<artifactId>io</artifactId>
53+
<version>${itext.version}</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.itextpdf</groupId>
57+
<artifactId>kernel</artifactId>
58+
<version>${itext.version}</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.itextpdf</groupId>
62+
<artifactId>layout</artifactId>
63+
<version>${itext.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>commons-io</groupId>
67+
<artifactId>commons-io</artifactId>
68+
<version>2.6</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>net.htmlparser.jericho</groupId>
72+
<artifactId>jericho-html</artifactId>
73+
<version>3.3</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>com.itextpdf</groupId>
77+
<artifactId>pdfa</artifactId>
78+
<version>${itext.version}</version>
79+
<scope>test</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.itextpdf</groupId>
83+
<artifactId>pdftest</artifactId>
84+
<version>${itext.version}</version>
85+
<scope>test</scope>
86+
</dependency>
87+
</dependencies>
88+
89+
<build>
90+
91+
<plugins>
92+
<plugin>
93+
<groupId>external.atlassian.jgitflow</groupId>
94+
<artifactId>jgitflow-maven-plugin</artifactId>
95+
<version>1.0-m5.1</version>
96+
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-failsafe-plugin</artifactId>
100+
<version>2.19.1</version>
101+
<configuration>
102+
<includes>
103+
<include>**/*Test.java</include>
104+
</includes>
105+
<groups>${integrationtests}</groups>
106+
</configuration>
107+
</plugin>
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-source-plugin</artifactId>
111+
<version>3.0.0</version>
112+
<configuration>
113+
<excludes>
114+
<exclude>**</exclude>
115+
</excludes>
116+
</configuration>
117+
</plugin>
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-surefire-plugin</artifactId>
121+
<version>2.19.1</version>
122+
<configuration>
123+
<groups>${unittests}</groups>
124+
</configuration>
125+
</plugin>
126+
<plugin>
127+
<groupId>org.pitest</groupId>
128+
<artifactId>pitest-maven</artifactId>
129+
<version>1.1.11</version>
130+
<configuration>
131+
<skip>true</skip>
132+
</configuration>
133+
</plugin>
134+
<plugin>
135+
<groupId>org.revapi</groupId>
136+
<artifactId>revapi-maven-plugin</artifactId>
137+
<version>0.8.2</version>
138+
<configuration>
139+
<skip>true</skip>
140+
</configuration>
141+
</plugin>
142+
</plugins>
143+
144+
</build>
145+
</project>

0 commit comments

Comments
 (0)