File tree Expand file tree Collapse file tree 4 files changed +166
-0
lines changed Expand file tree Collapse file tree 4 files changed +166
-0
lines changed Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ 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
+ <artifactId >code-samples-fop-2-9</artifactId >
6
+
7
+ <parent >
8
+ <groupId >org.fugerit.java</groupId >
9
+ <artifactId >code-samples-fop</artifactId >
10
+ <version >1.0.0-SNAPSHOT</version >
11
+ </parent >
12
+
13
+ <name >Fugerit Code Samples Fop 2.9</name >
14
+ <description >My code samples for latest version of fop</description >
15
+
16
+ <properties >
17
+ <fop-version >2.9</fop-version >
18
+ </properties >
19
+
20
+ <dependencies >
21
+
22
+ <dependency >
23
+ <groupId >org.apache.xmlgraphics</groupId >
24
+ <artifactId >fop</artifactId >
25
+ <version >${fop-version} </version >
26
+ </dependency >
27
+
28
+ <dependency >
29
+ <groupId >org.fugerit.java</groupId >
30
+ <artifactId >code-samples-fop-common</artifactId >
31
+ </dependency >
32
+
33
+ <dependency >
34
+ <groupId >org.fugerit.java</groupId >
35
+ <artifactId >fj-doc-mod-fop</artifactId >
36
+ </dependency >
37
+
38
+ </dependencies >
39
+
40
+ </project >
Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ 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
+ <artifactId >code-samples-fop-common</artifactId >
6
+
7
+ <parent >
8
+ <groupId >org.fugerit.java</groupId >
9
+ <artifactId >code-samples-fop</artifactId >
10
+ <version >1.0.0-SNAPSHOT</version >
11
+ </parent >
12
+
13
+ <name >Fugerit Code Samples Fop Common</name >
14
+ <description >My code samples for latest version of fop</description >
15
+
16
+ <properties >
17
+ <fop-version >2.10</fop-version >
18
+ </properties >
19
+
20
+ <dependencies >
21
+
22
+ <dependency >
23
+ <groupId >org.apache.xmlgraphics</groupId >
24
+ <artifactId >fop</artifactId >
25
+ <version >${fop-version} </version >
26
+ <scope >provided</scope >
27
+ </dependency >
28
+
29
+ <dependency >
30
+ <groupId >org.fugerit.java</groupId >
31
+ <artifactId >fj-doc-mod-fop</artifactId >
32
+ <version >8.10.1</version >
33
+ <scope >provided</scope >
34
+ </dependency >
35
+
36
+ </dependencies >
37
+
38
+ </project >
Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ 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
+ <artifactId >code-samples-fop-latest</artifactId >
6
+
7
+ <parent >
8
+ <groupId >org.fugerit.java</groupId >
9
+ <artifactId >code-samples-fop</artifactId >
10
+ <version >1.0.0-SNAPSHOT</version >
11
+ </parent >
12
+
13
+ <name >Fugerit Code Samples Fop Latest</name >
14
+ <description >My code samples for latest version of fop</description >
15
+
16
+ <properties >
17
+ <fop-version >2.10</fop-version >
18
+ </properties >
19
+
20
+ <dependencies >
21
+
22
+ <dependency >
23
+ <groupId >org.apache.xmlgraphics</groupId >
24
+ <artifactId >fop</artifactId >
25
+ <version >${fop-version} </version >
26
+ </dependency >
27
+
28
+ <dependency >
29
+ <groupId >org.fugerit.java</groupId >
30
+ <artifactId >code-samples-fop-common</artifactId >
31
+ </dependency >
32
+
33
+ <dependency >
34
+ <groupId >org.fugerit.java</groupId >
35
+ <artifactId >fj-doc-mod-fop</artifactId >
36
+ </dependency >
37
+
38
+ </dependencies >
39
+
40
+ </project >
Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ 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
+ <artifactId >code-samples-fop</artifactId >
6
+
7
+ <parent >
8
+ <groupId >org.fugerit.java</groupId >
9
+ <artifactId >code-samples</artifactId >
10
+ <version >1.0.0-SNAPSHOT</version >
11
+ </parent >
12
+
13
+ <name >Fugerit Code Samples Fop Parent</name >
14
+ <description >My code samples.</description >
15
+ <packaging >pom</packaging >
16
+
17
+ <properties >
18
+ <fj-doc-version >8.10.1</fj-doc-version >
19
+ </properties >
20
+
21
+
22
+ <modules >
23
+ <module >code-samples-fop-common</module >
24
+ <module >code-samples-fop-latest</module >
25
+ <module >code-samples-fop-2-9</module >
26
+ </modules >
27
+
28
+ <dependencyManagement >
29
+
30
+ <dependencies >
31
+
32
+ <dependency >
33
+ <groupId >org.fugerit.java</groupId >
34
+ <artifactId >code-samples-fop-common</artifactId >
35
+ <version >${project.version} </version >
36
+ </dependency >
37
+
38
+ <dependency >
39
+ <groupId >org.fugerit.java</groupId >
40
+ <artifactId >fj-doc-mod-fop</artifactId >
41
+ <version >${fj-doc-version} </version >
42
+ </dependency >
43
+
44
+ </dependencies >
45
+
46
+ </dependencyManagement >
47
+
48
+ </project >
You can’t perform that action at this time.
0 commit comments