Skip to content

Commit 0fc8730

Browse files
marcoandriesiText-CI
authored andcommitted
Add styled-xml-parser and svg to pom.xml
1 parent e4c7344 commit 0fc8730

File tree

4 files changed

+30
-23
lines changed

4 files changed

+30
-23
lines changed

itextcore/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,16 @@
9999
<artifactId>sign</artifactId>
100100
<version>${project.version}</version>
101101
</dependency>
102+
<dependency>
103+
<groupId>com.itextpdf</groupId>
104+
<artifactId>styled-xml-parser</artifactId>
105+
<version>${project.version}</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>com.itextpdf</groupId>
109+
<artifactId>svg</artifactId>
110+
<version>${project.version}</version>
111+
</dependency>
102112
</dependencies>
103113
<build>
104114
<plugins>

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
<module>pdfa</module>
5959
<module>pdftest</module>
6060
<module>sign</module>
61+
<module>styled-xml-parser</module>
62+
<module>svg</module>
6163
</modules>
6264

6365
<scm>
@@ -91,7 +93,7 @@
9193
<junitparams.version>1.0.4</junitparams.version>
9294
<logback.version>1.1.3</logback.version>
9395
<performancetests>com.itextpdf.test.annotations.type.PerformanceTest</performancetests>
94-
<pitest.version>1.1.8</pitest.version>
96+
<pitest.version>1.1.11</pitest.version>
9597
<pmd.version>3.5</pmd.version>
9698
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9799
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

styled-xml-parser/pom.xml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
45
<parent>
56
<groupId>com.itextpdf</groupId>
67
<artifactId>root</artifactId>
78
<version>7.1.4-SNAPSHOT</version>
8-
<relativePath/>
9+
<relativePath />
910
</parent>
11+
1012
<artifactId>styled-xml-parser</artifactId>
13+
1114
<name>iText 7 - Styled XML Parser</name>
1215
<description>Styled XML parser is used by iText7 modules to parse HTML and XML</description>
1316
<url>http://itextpdf.com/</url>
14-
<properties>
15-
<itext.version>${project.parent.version}</itext.version>
16-
<javadoc.version>2.10.4</javadoc.version>
17-
</properties>
17+
1818
<dependencies>
1919
<dependency>
2020
<groupId>com.itextpdf</groupId>
@@ -38,6 +38,7 @@
3838
<scope>test</scope>
3939
</dependency>
4040
</dependencies>
41+
4142
<build>
4243
<resources>
4344
<resource>
@@ -58,7 +59,6 @@
5859
<plugin>
5960
<groupId>org.apache.maven.plugins</groupId>
6061
<artifactId>maven-failsafe-plugin</artifactId>
61-
<version>2.19.1</version>
6262
<configuration>
6363
<includes>
6464
<include>**/*Test.java</include>
@@ -69,7 +69,6 @@
6969
<plugin>
7070
<groupId>org.apache.maven.plugins</groupId>
7171
<artifactId>maven-javadoc-plugin</artifactId>
72-
<version>${javadoc.version}</version>
7372
<executions>
7473
<execution>
7574
<id>attach-javadocs</id>
@@ -86,7 +85,6 @@
8685
<plugin>
8786
<groupId>org.apache.maven.plugins</groupId>
8887
<artifactId>maven-source-plugin</artifactId>
89-
<version>3.0.1</version>
9088
<executions>
9189
<execution>
9290
<id>attach-sources</id>
@@ -100,23 +98,20 @@
10098
<plugin>
10199
<groupId>org.apache.maven.plugins</groupId>
102100
<artifactId>maven-surefire-plugin</artifactId>
103-
<version>2.19.1</version>
104101
<configuration>
105102
<groups>${unittests}</groups>
106103
</configuration>
107104
</plugin>
108105
<plugin>
109106
<groupId>org.pitest</groupId>
110107
<artifactId>pitest-maven</artifactId>
111-
<version>1.1.11</version>
112108
<configuration>
113109
<skip>true</skip>
114110
</configuration>
115111
</plugin>
116112
<plugin>
117113
<groupId>org.revapi</groupId>
118114
<artifactId>revapi-maven-plugin</artifactId>
119-
<version>0.8.2</version>
120115
<configuration>
121116
<skip>true</skip>
122117
</configuration>

svg/pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
45
<parent>
56
<groupId>com.itextpdf</groupId>
67
<artifactId>root</artifactId>
78
<version>7.1.4-SNAPSHOT</version>
8-
<relativePath/>
9+
<relativePath />
910
</parent>
11+
1012
<artifactId>svg</artifactId>
13+
1114
<name>iText 7 - SVG</name>
1215
<description>svg is a module for iText7 that allows you to integrate SVG images in your PDF creation and manipulation process</description>
1316
<url>http://itextpdf.com/</url>
17+
1418
<properties>
15-
<itext.version>${project.parent.version}</itext.version>
1619
<maven.compiler.source>1.7</maven.compiler.source>
1720
<maven.compiler.target>1.7</maven.compiler.target>
1821
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1922
</properties>
23+
2024
<repositories>
2125
<repository>
2226
<releases>
@@ -41,24 +45,26 @@
4145
<url>https://repo.itextsupport.com/releases</url>
4246
</repository>
4347
</repositories>
48+
4449
<dependencies>
4550
<dependency>
4651
<groupId>com.itextpdf</groupId>
4752
<artifactId>layout</artifactId>
48-
<version>${itext.version}</version>
53+
<version>${project.version}</version>
4954
</dependency>
5055
<dependency>
5156
<groupId>com.itextpdf</groupId>
5257
<artifactId>styled-xml-parser</artifactId>
53-
<version>${itext.version}</version>
58+
<version>${project.version}</version>
5459
</dependency>
5560
<dependency>
5661
<groupId>com.itextpdf</groupId>
5762
<artifactId>pdftest</artifactId>
58-
<version>${itext.version}</version>
63+
<version>${project.version}</version>
5964
<scope>test</scope>
6065
</dependency>
6166
</dependencies>
67+
6268
<build>
6369
<resources>
6470
<resource>
@@ -72,7 +78,6 @@
7278
<plugin>
7379
<groupId>com.github.ekryd.sortpom</groupId>
7480
<artifactId>sortpom-maven-plugin</artifactId>
75-
<version>2.4.0</version>
7681
<executions>
7782
<execution>
7883
<phase>verify</phase>
@@ -94,7 +99,6 @@
9499
<plugin>
95100
<groupId>org.apache.maven.plugins</groupId>
96101
<artifactId>maven-failsafe-plugin</artifactId>
97-
<version>${failsafe.version}</version>
98102
<configuration>
99103
<includes>
100104
<include>**/*Test.java</include>
@@ -105,7 +109,6 @@
105109
<plugin>
106110
<groupId>org.apache.maven.plugins</groupId>
107111
<artifactId>maven-javadoc-plugin</artifactId>
108-
<version>${javadoc.version}</version>
109112
<executions>
110113
<execution>
111114
<id>attach-javadocs</id>
@@ -124,7 +127,6 @@
124127
<plugin>
125128
<groupId>org.apache.maven.plugins</groupId>
126129
<artifactId>maven-source-plugin</artifactId>
127-
<version>3.0.0</version>
128130
<executions>
129131
<execution>
130132
<id>attach-source</id>
@@ -138,15 +140,13 @@
138140
<plugin>
139141
<groupId>org.apache.maven.plugins</groupId>
140142
<artifactId>maven-surefire-plugin</artifactId>
141-
<version>${surefire.version}</version>
142143
<configuration>
143144
<groups>${unittests}</groups>
144145
</configuration>
145146
</plugin>
146147
<plugin>
147148
<groupId>org.codehaus.mojo</groupId>
148149
<artifactId>tidy-maven-plugin</artifactId>
149-
<version>1.0.0</version>
150150
<executions>
151151
<execution>
152152
<phase>verify</phase>

0 commit comments

Comments
 (0)