[
  {
    "path": "README.md",
    "content": "# java-dotenv\n\n### This package has been renamed to [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin)\n\n<p align=\"left\">\n\t<a href=\"https://github.com/cdimascio/dotenv-kotlin\"><img src=\"https://raw.githubusercontent.com/cdimascio/dotenv-kotlin/master/assets/kotlin-dotenv-logo.png\" alt=\"dotenv\" width=\"250\" /></a>\n</p>\n\n### Looking for a pure Java version, see [dotenv-java](https://github.com/cdimascio/dotenv-java)\n\n<p align=\"left\">\n\t<a href=\"https://github.com/cdimascio/dotenv-java\"><img src=\"https://raw.githubusercontent.com/cdimascio/dotenv-java/master/assets/dotenv-java-logo.png\" alt=\"dotenv-java\" width=\"260\" /></a>\n</p>\n\n### Why?\n\nTo avoid confusion. \n\njava-dotenv was implemented in Kotlin. This meant that Java-only users would end up pulling in some Kotlin deps. In order to keep the package size as small as possible for Java-only users, we've rewritten the dotenv core in Java. \n\nThe [dotenv-java](https://github.com/cdimascio/dotenv-java) project contains the pure Java variant. It implements the same API as the original java-dotenv (with the exception of the Kotlin DSL\n\nThe [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin) project is almost identical to the previous java-dotenv package. The only difference is that its core is provided by [dotenv-java](https://github.com/cdimascio/dotenv-java). It continues to provide functionality similar to before and includes the Kotlin DSL\n\n\n### Latest versions of java-dotenv\n\nThe last version of java-dotenv is `5.2.2`. It is available on MavenCentral and JCenter\n\nWe recommend you use **dotenv-java** or **dotenv-kotlin** instead.\n\n### Maven \n```xml\n<dependency>\n    <groupId>io.github.cdimascio</groupId>\n    <artifactId>java-dotenv</artifactId>\n    <version>5.2.2</version>\n</dependency>\n```\n\n### Gradle\n\n```groovy\nimplementation 'io.github.cdimascio:java-dotenv:5.2.2'\n```\n"
  },
  {
    "path": "pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n\n    <name>java-dotenv</name>\n    <description>Environment based config for the JVM</description>\n    <url>https://github.com/cdimascio/java-dotenv</url>\n\n    <groupId>io.github.cdimascio</groupId>\n    <artifactId>java-dotenv</artifactId>\n    <version>5.2.2</version>\n\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n            <comments>A business-friendly OSS license</comments>\n        </license>\n    </licenses>\n\n    <organization>\n        <name>Carmine DiMascio OSS</name>\n        <url>https://github.com/cdimascio</url>\n    </organization>\n\n    <scm>\n        <connection>scm:github:https://github.com/cdimascio/java-dotenv</connection>\n        <developerConnection>scm:github:https://github.com/cdimascio/java-dotenv</developerConnection>\n        <tag>master</tag>\n        <url>https://github.com/cdimascio/java-dotenv</url>\n    </scm>\n\n    <developers>\n        <developer>\n            <id>cdimascio</id>\n            <name>Carmine DiMascio</name>\n            <email>cdimascio@gmail.com</email>\n            <url>https://www.github.com/cdimascio</url>\n            <organization>Carmine DiMascio OSS</organization>\n            <organizationUrl>https://www.github.com/cdimascio</organizationUrl>\n            <roles>\n                <role>developer</role>\n            </roles>\n            <timezone>America/New_York</timezone>\n        </developer>\n    </developers>\n\n\n    <properties>\n        <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>\n        <maven.compiler.target>1.8</maven.compiler.target>\n        <maven.compiler.source>1.8</maven.compiler.source>\n        <kotlin.version>1.4.0</kotlin.version>\n        <main.class>io.cdimascio.DotenvKt</main.class>\n        <junit.version>4.12</junit.version>\n        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n\n        <maven.source.plugin>3.0.1</maven.source.plugin>\n        <maven.javadoc.plugin>3.0.0</maven.javadoc.plugin>\n        <dokka.version>0.9.18</dokka.version>\n        <bintray.subject>cdimascio</bintray.subject>\n        <bintray.repo>maven</bintray.repo>\n        <bintray.package>java-dotenv</bintray.package>\n    </properties>\n\n    <pluginRepositories>\n        <pluginRepository>\n            <id>jcenter</id>\n            <name>JCenter</name>\n            <url>https://jcenter.bintray.com/</url>\n        </pluginRepository>\n    </pluginRepositories>\n\n    <dependencies>\n        <dependency>\n            <groupId>org.jetbrains.kotlin</groupId>\n            <artifactId>kotlin-stdlib</artifactId>\n            <version>${kotlin.version}</version>\n            <scope>compile</scope>\n        </dependency>\n\n        <dependency>\n            <groupId>junit</groupId>\n            <artifactId>junit</artifactId>\n            <version>${junit.version}</version>\n            <scope>test</scope>\n        </dependency>\n\n        <dependency>\n            <groupId>org.jetbrains.kotlin</groupId>\n            <artifactId>kotlin-test-junit</artifactId>\n            <version>${kotlin.version}</version>\n            <scope>test</scope>\n        </dependency>\n    </dependencies>\n\n    <build>\n        <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>\n        <plugins>\n            <plugin>\n                <artifactId>kotlin-maven-plugin</artifactId>\n                <groupId>org.jetbrains.kotlin</groupId>\n                <version>${kotlin.version}</version>\n\n                <executions>\n                    <execution>\n                        <id>compile</id>\n                        <goals>\n                            <goal>compile</goal>\n                        </goals>\n                    </execution>\n\n                    <execution>\n                        <id>test-compile</id>\n                        <goals>\n                            <goal>test-compile</goal>\n                        </goals>\n                        <configuration>\n                            <sourceDirs>\n                                <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>\n                                <sourceDir>${project.basedir}/src/test/java</sourceDir>\n                            </sourceDirs>\n                        </configuration>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-jar-plugin</artifactId>\n                <version>2.6</version>\n                <configuration>\n                    <archive>\n                        <manifest>\n                            <addClasspath>true</addClasspath>\n                            <mainClass>${main.class}</mainClass>\n                        </manifest>\n                    </archive>\n                </configuration>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-surefire-plugin</artifactId>\n                <version>2.20.1</version>\n                <configuration>\n                    <workingDirectory>${project.basedir}</workingDirectory>\n                </configuration>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-source-plugin</artifactId>\n                <version>${maven.source.plugin}</version>\n                <executions>\n                    <execution>\n                        <id>attach-sources</id>\n                        <goals>\n                            <goal>jar</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-javadoc-plugin</artifactId>\n                <version>${maven.javadoc.plugin}</version>\n                <executions>\n                    <execution>\n                        <id>attach-javadocs</id>\n                        <goals>\n                            <goal>jar</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.jetbrains.dokka</groupId>\n                <artifactId>dokka-maven-plugin</artifactId>\n                <version>${dokka.version}</version>\n                <executions>\n                    <execution>\n                        <phase>pre-site</phase>\n                        <goals>\n                            <goal>dokka</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.jacoco</groupId>\n                <artifactId>jacoco-maven-plugin</artifactId>\n                <version>0.7.6.201602180812</version>\n                <executions>\n                    <execution>\n                        <id>prepare-agent</id>\n                        <goals>\n                            <goal>prepare-agent</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.eluder.coveralls</groupId>\n                <artifactId>coveralls-maven-plugin</artifactId>\n                <version>4.3.0</version>\n                <configuration>\n                    <repoToken>i3Bl4av26PMqZNekY8X3Jt7t6YhwFXKFu</repoToken>\n                </configuration>\n            </plugin>\n        </plugins>\n    </build>\n</project>\n"
  }
]