Download toml4j-0.7.1.jar file

Introduction

You can download toml4j-0.7.1.jar in this page.

License

The MIT License

Type List

toml4j-0.7.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.moandjiezana.toml/toml4j/pom.properties
META-INF/maven/com.moandjiezana.toml/toml4j/pom.xml
com.moandjiezana.toml.ArrayValueReader.class
com.moandjiezana.toml.ArrayValueWriter.class
com.moandjiezana.toml.BooleanValueReaderWriter.class
com.moandjiezana.toml.Container.class
com.moandjiezana.toml.Context.class
com.moandjiezana.toml.DatePolicy.class
com.moandjiezana.toml.DateValueReaderWriter.class
com.moandjiezana.toml.Identifier.class
com.moandjiezana.toml.IdentifierConverter.class
com.moandjiezana.toml.IndentationPolicy.class
com.moandjiezana.toml.InlineTableValueReader.class
com.moandjiezana.toml.Keys.class
com.moandjiezana.toml.LiteralStringValueReader.class
com.moandjiezana.toml.MapValueWriter.class
com.moandjiezana.toml.MultilineLiteralStringValueReader.class
com.moandjiezana.toml.MultilineStringValueReader.class
com.moandjiezana.toml.NumberValueReaderWriter.class
com.moandjiezana.toml.ObjectValueWriter.class
com.moandjiezana.toml.PrimitiveArrayValueWriter.class
com.moandjiezana.toml.Results.class
com.moandjiezana.toml.StringValueReaderWriter.class
com.moandjiezana.toml.TableArrayValueWriter.class
com.moandjiezana.toml.Toml.class
com.moandjiezana.toml.TomlParser.class
com.moandjiezana.toml.TomlWriter.class
com.moandjiezana.toml.ValueReader.class
com.moandjiezana.toml.ValueReaders.class
com.moandjiezana.toml.ValueWriter.class
com.moandjiezana.toml.ValueWriters.class
com.moandjiezana.toml.WriterContext.class

Pom

toml4j-0.7.1.pom file content.

<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>
  <groupId>com.moandjiezana.toml</groupId>
  <artifactId>toml4j</artifactId>
  <version>0.7.1</version>
  <name>toml4j</name>
  <description>A parser for TOML</description>
  <url>http://moandjiezana.com/toml/toml4j</url>
  <licenses>
    <license>
      <name>The MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:mwanji/toml4j.git</connection>
    <developerConnection>scm:git:git@github.com:mwanji/toml4j.git</developerConnection>
    <url>https://github.com/mwanji/toml4j</url>
    <tag>toml4j-0.7.1</tag>
  </scm>
  <issueManagement>
    <system>Github Issues</system>
    <url>https://github.com/mwanji/toml4j/issues</url>
  </issueManagement>
  <ciManagement>
    <system>Travis CI</system>
    <url>https://travis-ci.org/mwanji/toml4j</url>
  </ciManagement>
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>
  <developers>
    <developer>
      <id>moandji.ezana</id>
      <name>Moandji Ezana</name>
      <email>mwanji@gmail.com</email>
    </developer>
  </developers>
  <inceptionYear>2013</inceptionYear>
  
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.3.1</version>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.5.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>0.7.6.201602180812</version>
        <executions>
          <execution>
            <id>prepare-agent</id>
            <goals>
              <goal>prepare-agent</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.eluder.coveralls</groupId>
        <artifactId>coveralls-maven-plugin</artifactId>
        <version>4.2.0</version>
      </plugin>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.7</version>
        <extensions>true</extensions>
        <configuration>
          <serverId>ossrh</serverId>
          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
          <autoReleaseAfterClose>true</autoReleaseAfterClose>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.5.3</version>
        <configuration>
          <autoVersionSubmodules>true</autoVersionSubmodules>
          <useReleaseProfile>false</useReleaseProfile>
          <releaseProfiles>release</releaseProfiles>
          <goals>deploy</goals>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.6</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>3.0.0</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.10.4</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>com.moandjiezana.toml</groupId>
   <artifactId>toml4j</artifactId>
   <version>0.7.1</version>
</dependency>

Download

If you think the following toml4j-0.7.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download toml4j-0.7.1.jar file




PreviousNext

Related