fj-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.fugerit.java.poc</groupId>
<artifactId>fj-test</artifactId>
<version>0.0.2</version>
</dependency><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>
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>
<version>0.2.2</version>
<relativePath></relativePath>
</parent>
<groupId>org.fugerit.java.poc</groupId>
<artifactId>fj-test</artifactId>
<version>0.0.2</version>
<name>fj-test</name>
<description>Fugerit Test Repository (fj-test)</description>
<url>https://www.fugerit.org/perm/venus/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java-version-compliance>1.8</java-version-compliance>
<maven.compiler.source>${java-version-compliance}</maven.compiler.source>
<maven.compiler.target>${java-version-compliance}</maven.compiler.target>
<fop-version>2.8</fop-version>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Matteo a.k.a. Fugerit</name>
<email>m@fugerit.org</email>
<organization>Fugerit</organization>
<organizationUrl>https://www.fugerit.org</organizationUrl>
</developer>
<developer>
<name>Daneel</name>
<email>d@fugerit.org</email>
<organization>Fugerit</organization>
<organizationUrl>https://www.fugerit.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/fugerit-org/fj-doc.git</connection>
<developerConnection>scm:git:ssh://github.com/fugerit-org/fj-doc.git</developerConnection>
<url>http://github.com/fugerit-org/fj-doc</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop</artifactId>
<version>${fop-version}</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.16.0</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>fop26</id>
<properties>
<fop-version>2.6</fop-version>
</properties>
</profile>
<profile>
<id>fop27</id>
<properties>
<fop-version>2.7</fop-version>
</properties>
</profile>
<profile>
<id>fop28</id>
<properties>
<fop-version>2.8</fop-version>
</properties>
</profile>
</profiles>
<organization>
<url>https://www.fugerit.org</url>
<name>Fugerit</name>
</organization>
</project>