Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Oct 24, 2024
1 parent ff4fc15 commit d28a58f
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 0 deletions.
40 changes: 40 additions & 0 deletions code-samples-fop/code-samples-fop-2-9/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<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">
<modelVersion>4.0.0</modelVersion>

<artifactId>code-samples-fop-2-9</artifactId>

<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples-fop</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<name>Fugerit Code Samples Fop 2.9</name>
<description>My code samples for latest version of fop</description>

<properties>
<fop-version>2.9</fop-version>
</properties>

<dependencies>

<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId>
<version>${fop-version}</version>
</dependency>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples-fop-common</artifactId>
</dependency>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc-mod-fop</artifactId>
</dependency>

</dependencies>

</project>
38 changes: 38 additions & 0 deletions code-samples-fop/code-samples-fop-common/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<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">
<modelVersion>4.0.0</modelVersion>

<artifactId>code-samples-fop-common</artifactId>

<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples-fop</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<name>Fugerit Code Samples Fop Common</name>
<description>My code samples for latest version of fop</description>

<properties>
<fop-version>2.10</fop-version>
</properties>

<dependencies>

<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId>
<version>${fop-version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc-mod-fop</artifactId>
<version>8.10.1</version>
<scope>provided</scope>
</dependency>

</dependencies>

</project>
40 changes: 40 additions & 0 deletions code-samples-fop/code-samples-fop-latest/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<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">
<modelVersion>4.0.0</modelVersion>

<artifactId>code-samples-fop-latest</artifactId>

<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples-fop</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<name>Fugerit Code Samples Fop Latest</name>
<description>My code samples for latest version of fop</description>

<properties>
<fop-version>2.10</fop-version>
</properties>

<dependencies>

<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId>
<version>${fop-version}</version>
</dependency>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples-fop-common</artifactId>
</dependency>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc-mod-fop</artifactId>
</dependency>

</dependencies>

</project>
48 changes: 48 additions & 0 deletions code-samples-fop/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<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">
<modelVersion>4.0.0</modelVersion>

<artifactId>code-samples-fop</artifactId>

<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<name>Fugerit Code Samples Fop Parent</name>
<description>My code samples.</description>
<packaging>pom</packaging>

<properties>
<fj-doc-version>8.10.1</fj-doc-version>
</properties>


<modules>
<module>code-samples-fop-common</module>
<module>code-samples-fop-latest</module>
<module>code-samples-fop-2-9</module>
</modules>

<dependencyManagement>

<dependencies>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>code-samples-fop-common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc-mod-fop</artifactId>
<version>${fj-doc-version}</version>
</dependency>

</dependencies>

</dependencyManagement>

</project>

0 comments on commit d28a58f

Please sign in to comment.