printf4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.metricshub</groupId> <artifactId>printf4j</artifactId> <version>0.9.08</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.metricshub</groupId> <artifactId>oss-parent</artifactId> <version>2</version> </parent> <artifactId>printf4j</artifactId> <version>0.9.08</version> <name>Printf4J</name> <description>Java implementation of C's *printf() functions</description> <organization> <name>MetricsHub</name> <url>https://metricshub.com</url> </organization> <url>https://metricshub.org/printf4j</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/metricshub/printf4j/issues/</url> </issueManagement> <scm> <connection>scm:git:https://github.com/metricshub/printf4j.git</connection> <url>https://github.com/metricshub/printf4j</url> <tag>v0.9.08</tag> </scm> <developers> <developer> <name>Bertrand Martin (@bertysentry)</name> <email>bertrand@metricshub.com</email> <roles> <role>Project founder</role> </roles> </developer> </developers> <properties> <!-- Java 8 --> <maven.compiler.release>8</maven.compiler.release> <!-- Reproducible Build --> <!-- See https://maven.apache.org/guides/mini/guide-reproducible-builds.html --> <project.build.outputTimestamp>2025-04-01T15:35:13Z</project.build.outputTimestamp> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.12.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Prettier --> <plugin> <groupId>com.hubspot.maven.plugins</groupId> <artifactId>prettier-maven-plugin</artifactId> <version>0.21</version> <configuration> <prettierJavaVersion>2.5.0</prettierJavaVersion> <ignoreConfigFile>false</ignoreConfigFile> <ignoreEditorConfig>false</ignoreEditorConfig> <inputGlobs> <inputGlob>src/main/java/**/*.java</inputGlob> <inputGlob>src/test/java/**/*.java</inputGlob> </inputGlobs> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>