组织ID: |
com.moandjiezana.toml |
项目ID: |
toml4j |
版本: |
0.7.2 |
最后修改时间: |
2018-08-05 10:54:10 |
包类型: |
jar |
标题: |
toml4j |
描述: |
A parser for TOML |
相关URL: |
http://moandjiezana.com/toml/toml4j |
大小: |
61.15KB |
|
Maven引入代码: |
<dependency>
<groupId>com.moandjiezana.toml</groupId>
<artifactId>toml4j</artifactId>
<version>0.7.2</version>
</dependency>
|
Gradle引入代码: |
com.moandjiezana.toml:toml4j:0.7.2
|
下载Jar包: |
|
POM文件内容: |
<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.2</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.2</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.8.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.6.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.9</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.3.0</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</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-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-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.moandjiezana.toml.ArrayValueReader.class
com.moandjiezana.toml.ArrayValueWriter.class
com.moandjiezana.toml.BooleanValueReaderWriter.class
com.moandjiezana.toml.Container$1.class
com.moandjiezana.toml.Container$Table.class
com.moandjiezana.toml.Container$TableArray.class
com.moandjiezana.toml.Container.class
com.moandjiezana.toml.Context.class
com.moandjiezana.toml.DatePolicy.class
com.moandjiezana.toml.DateValueReaderWriter$1.class
com.moandjiezana.toml.DateValueReaderWriter$DateConverterJdk6.class
com.moandjiezana.toml.DateValueReaderWriter.class
com.moandjiezana.toml.Identifier$Type.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$Key.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$Errors.class
com.moandjiezana.toml.Results.class
com.moandjiezana.toml.StringValueReaderWriter.class
com.moandjiezana.toml.TableArrayValueWriter.class
com.moandjiezana.toml.Toml$1.class
com.moandjiezana.toml.Toml$Entry.class
com.moandjiezana.toml.Toml.class
com.moandjiezana.toml.TomlParser.class
com.moandjiezana.toml.TomlWriter$1.class
com.moandjiezana.toml.TomlWriter$Builder.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
META-INF/maven/com.moandjiezana.toml/toml4j/pom.xml
META-INF/maven/com.moandjiezana.toml/toml4j/pom.properties
|
依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
gson-2.8.1.jar
/com.google.code.gson/gson/2.8.1
查看gson所有版本文件
hamcrest-library-1.3.jar
/org.hamcrest/hamcrest-library/1.3
查看hamcrest-library所有版本文件
|