Skip to content

Commit 6d5e9f3

Browse files
committed
Correct version number to 1.4.2-SNAPSHOT
1 parent 4f7d9d9 commit 6d5e9f3

File tree

5 files changed

+167
-164
lines changed

5 files changed

+167
-164
lines changed

openpdf-fonts-extra/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.4.1-SNAPSHOT</version>
8+
<version>1.4.2-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>openpdf-fonts-extra</artifactId>

openpdf/pom.xml

Lines changed: 95 additions & 94 deletions
Original file line numberDiff line numberDiff line change
@@ -1,102 +1,103 @@
11
<?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>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
45

5-
<parent>
6-
<groupId>com.github.librepdf</groupId>
7-
<artifactId>openpdf-parent</artifactId>
8-
<version>1.4.1-SNAPSHOT</version>
9-
</parent>
6+
<parent>
7+
<groupId>com.github.librepdf</groupId>
8+
<artifactId>openpdf-parent</artifactId>
9+
<version>1.4.2-SNAPSHOT</version>
10+
</parent>
1011

11-
<artifactId>openpdf</artifactId>
12+
<artifactId>openpdf</artifactId>
1213

13-
<properties>
14-
<java-module-name>com.github.librepdf.openpdf</java-module-name>
15-
</properties>
14+
<properties>
15+
<java-module-name>com.github.librepdf.openpdf</java-module-name>
16+
</properties>
1617

17-
<dependencies>
18-
<dependency>
19-
<groupId>com.ibm.icu</groupId>
20-
<artifactId>icu4j</artifactId>
21-
<version>74.2</version>
22-
<optional>true</optional>
23-
</dependency>
24-
<dependency>
25-
<groupId>org.bouncycastle</groupId>
26-
<artifactId>bcprov-jdk18on</artifactId>
27-
<optional>true</optional>
28-
</dependency>
29-
<dependency>
30-
<groupId>org.bouncycastle</groupId>
31-
<artifactId>bcpkix-jdk18on</artifactId>
32-
<optional>true</optional>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.apache.xmlgraphics</groupId>
36-
<artifactId>fop</artifactId>
37-
<optional>true</optional>
38-
</dependency>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.ibm.icu</groupId>
21+
<artifactId>icu4j</artifactId>
22+
<version>74.2</version>
23+
<optional>true</optional>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.bouncycastle</groupId>
27+
<artifactId>bcprov-jdk18on</artifactId>
28+
<optional>true</optional>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.bouncycastle</groupId>
32+
<artifactId>bcpkix-jdk18on</artifactId>
33+
<optional>true</optional>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.apache.xmlgraphics</groupId>
37+
<artifactId>fop</artifactId>
38+
<optional>true</optional>
39+
</dependency>
3940

40-
<!-- Test Deps -->
41-
<dependency>
42-
<groupId>org.junit.jupiter</groupId>
43-
<artifactId>junit-jupiter-api</artifactId>
44-
<scope>test</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.junit.jupiter</groupId>
48-
<artifactId>junit-jupiter-params</artifactId>
49-
<scope>test</scope>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.assertj</groupId>
53-
<artifactId>assertj-core</artifactId>
54-
<scope>test</scope>
55-
</dependency>
56-
<dependency>
57-
<groupId>org.mockito</groupId>
58-
<artifactId>mockito-core</artifactId>
59-
<version>5.10.0</version>
60-
<scope>test</scope>
61-
</dependency>
62-
<dependency>
63-
<groupId>org.hamcrest</groupId>
64-
<artifactId>hamcrest</artifactId>
65-
<scope>test</scope>
66-
</dependency>
67-
<dependency>
68-
<groupId>commons-io</groupId>
69-
<artifactId>commons-io</artifactId>
70-
<scope>test</scope>
71-
</dependency>
72-
<dependency>
73-
<groupId>org.verapdf</groupId>
74-
<artifactId>validation-model</artifactId>
75-
<version>1.24.1</version>
76-
<optional>true</optional>
77-
<scope>test</scope>
78-
</dependency>
79-
</dependencies>
41+
<!-- Test Deps -->
42+
<dependency>
43+
<groupId>org.junit.jupiter</groupId>
44+
<artifactId>junit-jupiter-api</artifactId>
45+
<scope>test</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.junit.jupiter</groupId>
49+
<artifactId>junit-jupiter-params</artifactId>
50+
<scope>test</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.assertj</groupId>
54+
<artifactId>assertj-core</artifactId>
55+
<scope>test</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.mockito</groupId>
59+
<artifactId>mockito-core</artifactId>
60+
<version>5.10.0</version>
61+
<scope>test</scope>
62+
</dependency>
63+
<dependency>
64+
<groupId>org.hamcrest</groupId>
65+
<artifactId>hamcrest</artifactId>
66+
<scope>test</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>commons-io</groupId>
70+
<artifactId>commons-io</artifactId>
71+
<scope>test</scope>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.verapdf</groupId>
75+
<artifactId>validation-model</artifactId>
76+
<version>1.24.1</version>
77+
<optional>true</optional>
78+
<scope>test</scope>
79+
</dependency>
80+
</dependencies>
8081

81-
<build>
82-
<resources>
83-
<resource>
84-
<directory>src/main/resources</directory>
85-
</resource>
86-
<resource>
87-
<directory>src/main/resources-filtered</directory>
88-
<filtering>true</filtering>
89-
</resource>
90-
</resources>
91-
<plugins>
92-
<plugin>
93-
<groupId>org.apache.felix</groupId>
94-
<artifactId>maven-bundle-plugin</artifactId>
95-
<configuration>
96-
<!-- unpack bundle, so humans can see the manifest without unpacking the jar -->
97-
<unpackBundle>true</unpackBundle>
98-
</configuration>
99-
</plugin>
100-
</plugins>
101-
</build>
82+
<build>
83+
<resources>
84+
<resource>
85+
<directory>src/main/resources</directory>
86+
</resource>
87+
<resource>
88+
<directory>src/main/resources-filtered</directory>
89+
<filtering>true</filtering>
90+
</resource>
91+
</resources>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.felix</groupId>
95+
<artifactId>maven-bundle-plugin</artifactId>
96+
<configuration>
97+
<!-- unpack bundle, so humans can see the manifest without unpacking the jar -->
98+
<unpackBundle>true</unpackBundle>
99+
</configuration>
100+
</plugin>
101+
</plugins>
102+
</build>
102103
</project>

pdf-swing/pom.xml

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
11
<?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>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
45

5-
<parent>
6-
<groupId>com.github.librepdf</groupId>
7-
<artifactId>openpdf-parent</artifactId>
8-
<version>1.4.1-SNAPSHOT</version>
9-
</parent>
6+
<parent>
7+
<groupId>com.github.librepdf</groupId>
8+
<artifactId>openpdf-parent</artifactId>
9+
<version>1.4.2-SNAPSHOT</version>
10+
</parent>
1011

11-
<artifactId>pdf-swing</artifactId>
12+
<artifactId>pdf-swing</artifactId>
1213

13-
<properties>
14-
<java-module-name>com.github.librepdf.pdfSwing</java-module-name>
15-
</properties>
14+
<properties>
15+
<java-module-name>com.github.librepdf.pdfSwing</java-module-name>
16+
</properties>
1617

17-
<dependencies>
18-
<dependency>
19-
<groupId>com.github.librepdf</groupId>
20-
<artifactId>openpdf</artifactId>
21-
<version>${project.version}</version>
22-
</dependency>
23-
<dependency>
24-
<groupId>org.swinglabs</groupId>
25-
<artifactId>pdf-renderer</artifactId>
26-
</dependency>
27-
<dependency>
28-
<groupId>org.dom4j</groupId>
29-
<artifactId>dom4j</artifactId>
30-
</dependency>
31-
</dependencies>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.github.librepdf</groupId>
21+
<artifactId>openpdf</artifactId>
22+
<version>${project.version}</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.swinglabs</groupId>
26+
<artifactId>pdf-renderer</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.dom4j</groupId>
30+
<artifactId>dom4j</artifactId>
31+
</dependency>
32+
</dependencies>
3233

3334
</project>

pdf-toolbox/pom.xml

Lines changed: 43 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,51 @@
11
<?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>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
45

5-
<parent>
6-
<groupId>com.github.librepdf</groupId>
7-
<artifactId>openpdf-parent</artifactId>
8-
<version>1.4.1-SNAPSHOT</version>
9-
</parent>
6+
<parent>
7+
<groupId>com.github.librepdf</groupId>
8+
<artifactId>openpdf-parent</artifactId>
9+
<version>1.4.2-SNAPSHOT</version>
10+
</parent>
1011

11-
<artifactId>pdf-toolbox</artifactId>
12+
<artifactId>pdf-toolbox</artifactId>
1213

13-
<properties>
14-
<java-module-name>com.github.librepdf.pdfToolbox</java-module-name>
15-
</properties>
14+
<properties>
15+
<java-module-name>com.github.librepdf.pdfToolbox</java-module-name>
16+
</properties>
1617

17-
<dependencies>
18-
<dependency>
19-
<groupId>com.github.librepdf</groupId>
20-
<artifactId>openpdf</artifactId>
21-
<version>${project.version}</version>
22-
</dependency>
23-
<dependency>
24-
<groupId>org.jfree</groupId>
25-
<artifactId>jfreechart</artifactId>
26-
</dependency>
27-
<dependency>
28-
<groupId>org.jfree</groupId>
29-
<artifactId>jcommon</artifactId>
30-
</dependency>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.github.librepdf</groupId>
21+
<artifactId>openpdf</artifactId>
22+
<version>${project.version}</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.jfree</groupId>
26+
<artifactId>jfreechart</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.jfree</groupId>
30+
<artifactId>jcommon</artifactId>
31+
</dependency>
3132

32-
<!-- Test Dependencies -->
33-
<dependency>
34-
<groupId>jakarta.servlet</groupId>
35-
<artifactId>jakarta.servlet-api</artifactId>
36-
<scope>test</scope>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.junit.jupiter</groupId>
40-
<artifactId>junit-jupiter-api</artifactId>
41-
<scope>test</scope>
42-
</dependency>
43-
<dependency>
44-
<groupId>org.assertj</groupId>
45-
<artifactId>assertj-core</artifactId>
46-
<scope>test</scope>
47-
</dependency>
48-
</dependencies>
33+
<!-- Test Dependencies -->
34+
<dependency>
35+
<groupId>jakarta.servlet</groupId>
36+
<artifactId>jakarta.servlet-api</artifactId>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.junit.jupiter</groupId>
41+
<artifactId>junit-jupiter-api</artifactId>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.assertj</groupId>
46+
<artifactId>assertj-core</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
</dependencies>
4950

5051
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.4.1-SNAPSHOT</version> <!-- artifact.version -->
8+
<version>1.4.2-SNAPSHOT</version> <!-- artifact.version -->
99
<packaging>pom</packaging>
1010

1111
<!-- please run mvn tidy:pom once in a while -->

0 commit comments

Comments
 (0)