fixed-width-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.joutvhu</groupId>
<artifactId>fixed-width-parser</artifactId>
<version>1.1.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.joutvhu</groupId>
<artifactId>fixed-width-parser</artifactId>
<version>1.1.5</version>
<name>fixed-width-parser</name>
<description>Parse fixed width string to object and export object to fixed width string</description>
<url>https://github.com/joutvhu/fixed-width-parser</url>
<organization>
<name>Giao Ho</name>
<url>https://github.com/joutvhu</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/joutvhu/fixed-width-parser/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>joutvhu</id>
<name>Giao Ho</name>
<email>joutvhu@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:joutvhu/fixed-width-parser.git</connection>
<developerConnection>scm:git:git@github.com:joutvhu/fixed-width-parser.git</developerConnection>
<url>https://github.com/joutvhu/fixed-width-parser</url>
</scm>
<issueManagement>
<system>Github Issue</system>
<url>https://github.com/joutvhu/fixed-width-parser/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>com.google.re2j</groupId>
<artifactId>re2j</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.12</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.11.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.11.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>2.11.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.11.2</version>
</dependency>
</dependencies>
</project>