jackson-dataformats-text
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>tools.jackson.dataformat</groupId> <artifactId>jackson-dataformats-text</artifactId> <version>3.0.0-rc2</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>tools.jackson</groupId> <artifactId>jackson-base</artifactId> <version>3.0.0-rc2</version> </parent> <groupId>tools.jackson.dataformat</groupId> <artifactId>jackson-dataformats-text</artifactId> <name>Jackson dataformats: Text</name> <version>3.0.0-rc2</version> <packaging>pom</packaging> <description>Parent pom for Jackson text-based dataformats (as opposed to binary). </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>csv</module> <module>properties</module> <module>yaml</module> <module>toml</module> </modules> <url>https://github.com/FasterXML/jackson-dataformats-text</url> <scm> <connection>scm:git:git@github.com:FasterXML/jackson-dataformats-text.git</connection> <developerConnection>scm:git:git@github.com:FasterXML/jackson-dataformats-text.git</developerConnection> <url>https://github.com/FasterXML/jackson-dataformats-text</url> <tag>jackson-dataformats-text-3.0.0-rc2</tag> </scm> <issueManagement> <url>https://github.com/FasterXML/jackson-dataformats-text/issues</url> </issueManagement> <properties> <!-- for Reproducible Builds --> <project.build.outputTimestamp>2025-03-28T23:22:46Z</project.build.outputTimestamp> </properties> <dependencies> <!-- all dataformats extend core so just include here --> <dependency> <groupId>tools.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <!-- 12-Jan-2025, tatu: JUnit4 no longer needed (as per JSTEP-10): --> <!-- 11-Jan-2025, joohyukkim: JSTEP-10, part 1, migrate to JUnit5 --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- Alas, need to include snapshot reference since otherwise can not find snapshot of parent... --> <!-- 14-Jul-2022, tatu: Worse. We need both "new" and "old" Snapshot repositories because "jackson-annotations" is published via "old" --> <repositories> <repository> <id>sonatype-nexus-snapshots-new</id> <name>Sonatype Nexus Snapshots (new)</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> <repository> <id>sonatype-nexus-snapshots-old</id> <name>Sonatype Nexus Snapshots (old)</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories> <build> <pluginManagement> <plugins> <plugin> <!-- Inherited from oss-base. Generate PackageVersion.java.--> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <executions> <execution> <id>process-packageVersion</id> <phase>generate-sources</phase> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>