|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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"> |
| 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"> |
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
7 | 5 | <parent> |
8 | 6 | <groupId>com.itextpdf</groupId> |
9 | 7 | <artifactId>root</artifactId> |
10 | | - <version>7.0.5</version> |
11 | | - <relativePath/> |
| 8 | + <version>7.1.0</version> |
| 9 | + <relativePath /> |
12 | 10 | </parent> |
13 | 11 |
|
14 | 12 | <artifactId>html2pdf</artifactId> |
15 | | - <version>1.0.2</version> |
| 13 | + <version>2.0.0</version> |
16 | 14 |
|
17 | 15 | <name>pdfHTML</name> |
18 | 16 | <description>pdfHTML is an iText 7 add-on that lets you to parse (X)HTML snippets and the associated CSS and converts |
19 | | - them to PDF. |
20 | | - </description> |
| 17 | + them to PDF.</description> |
21 | 18 | <url>http://itextpdf.com/</url> |
22 | 19 |
|
23 | 20 | <properties> |
24 | 21 | <itext.version>${project.parent.version}</itext.version> |
25 | 22 | <javadoc.version>2.10.4</javadoc.version> |
26 | 23 | </properties> |
27 | 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 | + |
28 | 44 | <dependencies> |
29 | 45 | <dependency> |
30 | 46 | <groupId>com.itextpdf</groupId> |
31 | | - <artifactId>layout</artifactId> |
| 47 | + <artifactId>forms</artifactId> |
32 | 48 | <version>${itext.version}</version> |
33 | 49 | </dependency> |
34 | 50 | <dependency> |
35 | 51 | <groupId>com.itextpdf</groupId> |
36 | | - <artifactId>pdftest</artifactId> |
| 52 | + <artifactId>layout</artifactId> |
37 | 53 | <version>${itext.version}</version> |
38 | | - <scope>test</scope> |
39 | 54 | </dependency> |
40 | 55 | <dependency> |
41 | 56 | <groupId>com.itextpdf</groupId> |
42 | | - <artifactId>pdfa</artifactId> |
| 57 | + <artifactId>hyph</artifactId> |
43 | 58 | <version>${itext.version}</version> |
44 | 59 | <scope>test</scope> |
45 | 60 | </dependency> |
46 | 61 | <dependency> |
47 | 62 | <groupId>com.itextpdf</groupId> |
48 | | - <artifactId>hyph</artifactId> |
| 63 | + <artifactId>pdfa</artifactId> |
49 | 64 | <version>${itext.version}</version> |
50 | 65 | <scope>test</scope> |
51 | 66 | </dependency> |
52 | 67 | <dependency> |
53 | 68 | <groupId>com.itextpdf</groupId> |
54 | | - <artifactId>forms</artifactId> |
| 69 | + <artifactId>pdftest</artifactId> |
55 | 70 | <version>${itext.version}</version> |
| 71 | + <scope>test</scope> |
56 | 72 | </dependency> |
57 | 73 | </dependencies> |
58 | 74 |
|
59 | | - <repositories> |
60 | | - <repository> |
61 | | - <id>itext-snapshot</id> |
62 | | - <name>iText Repository - snapshots</name> |
63 | | - <url>https://repo.itextsupport.com/snapshot</url> |
64 | | - <snapshots> |
65 | | - <enabled>true</enabled> |
66 | | - </snapshots> |
67 | | - </repository> |
68 | | - <repository> |
69 | | - <id>itext-releases</id> |
70 | | - <name>iText Repository - releases</name> |
71 | | - <url>https://repo.itextsupport.com/releases</url> |
72 | | - <snapshots> |
73 | | - <enabled>false</enabled> |
74 | | - </snapshots> |
75 | | - </repository> |
76 | | - </repositories> |
77 | | - |
78 | 75 | <build> |
| 76 | + <resources> |
| 77 | + <resource> |
| 78 | + <directory>src/main/java</directory> |
| 79 | + <includes> |
| 80 | + <include>**/*.properties</include> |
| 81 | + </includes> |
| 82 | + </resource> |
| 83 | + <resource> |
| 84 | + <directory>src/main/resources</directory> |
| 85 | + <includes> |
| 86 | + <include>**/*.css</include> |
| 87 | + <include>**/*.ttf</include> |
| 88 | + </includes> |
| 89 | + </resource> |
| 90 | + </resources> |
79 | 91 | <plugins> |
80 | 92 | <plugin> |
81 | | - <groupId>org.apache.maven.plugins</groupId> |
82 | | - <artifactId>maven-surefire-plugin</artifactId> |
83 | | - <version>2.19.1</version> |
84 | | - <configuration> |
85 | | - <groups>${unittests}</groups> |
86 | | - </configuration> |
| 93 | + <groupId>external.atlassian.jgitflow</groupId> |
| 94 | + <artifactId>jgitflow-maven-plugin</artifactId> |
| 95 | + <version>1.0-m5.1</version> |
87 | 96 | </plugin> |
88 | 97 | <plugin> |
89 | 98 | <groupId>org.apache.maven.plugins</groupId> |
|
96 | 105 | <groups>${integrationtests}</groups> |
97 | 106 | </configuration> |
98 | 107 | </plugin> |
99 | | - <plugin> |
100 | | - <groupId>org.pitest</groupId> |
101 | | - <artifactId>pitest-maven</artifactId> |
102 | | - <version>1.1.11</version> |
103 | | - <configuration> |
104 | | - <skip>true</skip> |
105 | | - </configuration> |
106 | | - </plugin> |
107 | | - <plugin> |
108 | | - <groupId>org.apache.maven.plugins</groupId> |
109 | | - <artifactId>maven-source-plugin</artifactId> |
110 | | - <version>3.0.0</version> |
111 | | - <configuration> |
112 | | - <excludes> |
113 | | - <exclude>**</exclude> |
114 | | - </excludes> |
115 | | - </configuration> |
116 | | - </plugin> |
117 | | - <plugin> |
118 | | - <groupId>org.revapi</groupId> |
119 | | - <artifactId>revapi-maven-plugin</artifactId> |
120 | | - <version>0.8.2</version> |
121 | | - <configuration> |
122 | | - <skip>true</skip> |
123 | | - </configuration> |
124 | | - </plugin> |
125 | | - <plugin> |
126 | | - <groupId>external.atlassian.jgitflow</groupId> |
127 | | - <artifactId>jgitflow-maven-plugin</artifactId> |
128 | | - <version>1.0-m5.1</version> |
129 | | - </plugin> |
130 | 108 | <plugin> |
131 | 109 | <groupId>org.apache.maven.plugins</groupId> |
132 | 110 | <artifactId>maven-javadoc-plugin</artifactId> |
133 | 111 | <version>${javadoc.version}</version> |
134 | | - <configuration> |
135 | | - <quiet>true</quiet> |
136 | | - <failOnError>true</failOnError> |
137 | | - </configuration> |
138 | 112 | <executions> |
139 | 113 | <execution> |
140 | 114 | <id>attach-javadocs</id> |
|
143 | 117 | </goals> |
144 | 118 | </execution> |
145 | 119 | </executions> |
| 120 | + <configuration> |
| 121 | + <quiet>true</quiet> |
| 122 | + <failOnError>true</failOnError> |
| 123 | + </configuration> |
146 | 124 | </plugin> |
147 | 125 | <plugin> |
148 | | - <groupId>org.apache.felix</groupId> |
149 | | - <artifactId>maven-bundle-plugin</artifactId> |
150 | | - <version>3.2.0</version> |
151 | | - <extensions>true</extensions> |
| 126 | + <groupId>org.apache.maven.plugins</groupId> |
| 127 | + <artifactId>maven-source-plugin</artifactId> |
| 128 | + <version>3.0.1</version> |
152 | 129 | <executions> |
153 | 130 | <execution> |
154 | | - <id>bundle-manifest</id> |
155 | | - <phase>process-classes</phase> |
| 131 | + <id>attach-sources</id> |
| 132 | + <phase>verify</phase> |
156 | 133 | <goals> |
157 | | - <goal>manifest</goal> |
| 134 | + <goal>jar-no-fork</goal> |
158 | 135 | </goals> |
159 | 136 | </execution> |
160 | 137 | </executions> |
| 138 | + </plugin> |
| 139 | + <plugin> |
| 140 | + <groupId>org.apache.maven.plugins</groupId> |
| 141 | + <artifactId>maven-surefire-plugin</artifactId> |
| 142 | + <version>2.19.1</version> |
161 | 143 | <configuration> |
162 | | - <unpackBundle>true</unpackBundle> |
| 144 | + <groups>${unittests}</groups> |
163 | 145 | </configuration> |
164 | 146 | </plugin> |
165 | 147 | <plugin> |
166 | | - <groupId>com.github.ekryd.sortpom</groupId> |
167 | | - <artifactId>sortpom-maven-plugin</artifactId> |
168 | | - <version>2.4.0</version> |
169 | | - <executions> |
170 | | - <execution> |
171 | | - <phase>verify</phase> |
172 | | - <goals> |
173 | | - <goal>sort</goal> |
174 | | - </goals> |
175 | | - </execution> |
176 | | - </executions> |
| 148 | + <groupId>org.pitest</groupId> |
| 149 | + <artifactId>pitest-maven</artifactId> |
| 150 | + <version>1.1.11</version> |
177 | 151 | <configuration> |
178 | | - <lineSeparator>\n</lineSeparator> |
179 | | - <encoding>${project.build.sourceEncoding}</encoding> |
180 | | - <sortProperties>true</sortProperties> |
181 | | - <keepBlankLines>true</keepBlankLines> |
182 | | - <expandEmptyElements>false</expandEmptyElements> |
183 | | - <nrOfIndentSpace>2</nrOfIndentSpace> |
184 | | - <sortDependencies>scope</sortDependencies> |
185 | | - <skip>${skipSortPom}</skip> |
| 152 | + <skip>true</skip> |
186 | 153 | </configuration> |
187 | 154 | </plugin> |
188 | 155 | <plugin> |
189 | | - <groupId>org.codehaus.mojo</groupId> |
190 | | - <artifactId>tidy-maven-plugin</artifactId> |
191 | | - <version>1.0.0</version> |
192 | | - <executions> |
193 | | - <execution> |
194 | | - <phase>verify</phase> |
195 | | - <goals> |
196 | | - <goal>pom</goal> |
197 | | - </goals> |
198 | | - </execution> |
199 | | - </executions> |
| 156 | + <groupId>org.revapi</groupId> |
| 157 | + <artifactId>revapi-maven-plugin</artifactId> |
| 158 | + <version>0.8.2</version> |
| 159 | + <configuration> |
| 160 | + <skip>true</skip> |
| 161 | + </configuration> |
200 | 162 | </plugin> |
201 | 163 | </plugins> |
202 | | - <resources> |
203 | | - <resource> |
204 | | - <directory>src/main/java</directory> |
205 | | - <includes> |
206 | | - <include>**/*.properties</include> |
207 | | - </includes> |
208 | | - </resource> |
209 | | - <resource> |
210 | | - <directory>src/main/resources</directory> |
211 | | - <includes> |
212 | | - <include>**/*.css</include> |
213 | | - <include>**/*.ttf</include> |
214 | | - </includes> |
215 | | - </resource> |
216 | | - </resources> |
217 | 164 | </build> |
218 | | - |
219 | 165 | </project> |
0 commit comments