2014-04-10 13:34:01 +00:00
|
|
|
<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">
|
2013-02-26 07:57:26 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.moandjiezana.toml</groupId>
|
|
|
|
<artifactId>toml4j</artifactId>
|
2017-08-05 13:56:52 +00:00
|
|
|
<version>0.7.2</version>
|
2013-02-26 07:57:26 +00:00
|
|
|
<name>toml4j</name>
|
|
|
|
<description>A parser for TOML</description>
|
2014-04-06 20:24:54 +00:00
|
|
|
<url>http://moandjiezana.com/toml/toml4j</url>
|
2015-02-09 07:46:54 +00:00
|
|
|
<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>
|
2017-08-05 13:56:52 +00:00
|
|
|
<tag>toml4j-0.7.2</tag>
|
2015-02-09 07:46:54 +00:00
|
|
|
</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>
|
2016-06-15 13:04:45 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2013-02-26 19:49:57 +00:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>moandji.ezana</id>
|
|
|
|
<name>Moandji Ezana</name>
|
|
|
|
<email>mwanji@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2015-02-09 07:46:54 +00:00
|
|
|
<inceptionYear>2013</inceptionYear>
|
|
|
|
|
2013-02-26 07:57:26 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2015-01-22 13:40:55 +00:00
|
|
|
<version>4.12</version>
|
2013-02-26 07:57:26 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-02-28 10:53:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2017-07-29 02:06:51 +00:00
|
|
|
<version>2.8.1</version>
|
2013-02-28 10:53:46 +00:00
|
|
|
</dependency>
|
2014-04-09 13:02:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-02-26 07:57:26 +00:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2017-07-29 02:06:51 +00:00
|
|
|
<version>3.6.1</version>
|
2013-02-26 07:57:26 +00:00
|
|
|
<configuration>
|
2015-12-10 15:46:20 +00:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
2013-02-26 07:57:26 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-04-09 18:41:17 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2017-07-29 02:06:51 +00:00
|
|
|
<version>0.7.9</version>
|
2014-04-09 18:41:17 +00:00
|
|
|
<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>
|
2017-07-29 02:06:51 +00:00
|
|
|
<version>4.3.0</version>
|
2016-06-15 13:04:45 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2017-07-29 02:06:51 +00:00
|
|
|
<version>1.6.8</version>
|
2016-06-15 13:04:45 +00:00
|
|
|
<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>
|
2014-04-09 18:41:17 +00:00
|
|
|
</plugin>
|
2017-08-05 13:55:00 +00:00
|
|
|
<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>
|
2013-02-26 07:57:26 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-07-29 02:06:51 +00:00
|
|
|
</project>
|