| 组织ID: |
io.github.cdimascio |
| 项目ID: |
java-dotenv |
| 版本: |
1.1.0 |
| 最后修改时间: |
2019-12-01 18:47:47 |
| 包类型: |
jar |
| 标题: |
java-dotenv |
| 描述: |
Environment based config for the JVM |
| 相关URL: |
https://github.com/cdimascio/java-dotenv |
| 大小: |
18.75KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>java-dotenv</artifactId>
<version>1.1.0</version>
</dependency>
|
| Gradle引入代码: |
io.github.cdimascio:java-dotenv:1.1.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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>
<name>java-dotenv</name>
<description>Environment based config for the JVM</description>
<url>https://github.com/cdimascio/java-dotenv</url>
<groupId>io.github.cdimascio</groupId>
<artifactId>java-dotenv</artifactId>
<version>1.1.0</version>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<organization>
<name>Carmine DiMascio OSS</name>
<url>https://github.com/cdimascio</url>
</organization>
<scm>
<connection>scm:github:https://github.com/cdimascio/java-dotenv</connection>
<developerConnection>scm:github:https://github.com/cdimascio/java-dotenv</developerConnection>
<tag>master</tag>
<url>https://github.com/cdimascio/java-dotenv</url>
</scm>
<developers>
<developer>
<id>cdimascio</id>
<name>Carmine DiMascio</name>
<email>cdimascio@gmail.com</email>
<url>https://www.github.com/cdimascio</url>
<organization>Carmine DiMascio OSS</organization>
<organizationUrl>https://www.github.com/cdimascio</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
</developers>
<properties>
<kotlin.version>1.2.0</kotlin.version>
<main.class>io.cdimascio.DotenvKt</main.class>
<junit.version>4.12</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dokka.version>0.9.15</dokka.version>
<bintray.subject>cdimascio</bintray.subject>
<bintray.repo>maven</bintray.repo>
<bintray.package>java-dotenv</bintray.package>
</properties>
<pluginRepositories>
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>
<!--<distributionManagement>-->
<!--<repository>-->
<!--<id>bintray-cdimascio-maven</id>-->
<!--<!–<name>cdimascio-maven</name>–>-->
<!--<url>https://api.bintray.com/maven/cdimascio/maven/java-dotenv/;publish=1</url>-->
<!--<!–<url>https://api.bintray.com/maven/${bintray.subject}/${bintray.repo}/${bintray.package}/;publish=1</url>–>-->
<!--</repository>-->
<!--</distributionManagement>-->
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>${main.class}</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<workingDirectory>${project.basedir}</workingDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>${dokka.version}</version>
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>dokka</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
io.github.cdimascio.DotEnvReader$isComment$1.class
io.github.cdimascio.DotEnvReader$parseLine$1.class
io.github.cdimascio.DotenvParser.class
io.github.cdimascio.DotenvImpl.class
io.github.cdimascio.Dotenv.class
io.github.cdimascio.ClasspathHelper.class
io.github.cdimascio.Dotenv$Instance.class
io.github.cdimascio.DotEnvException.class
io.github.cdimascio.DotEnvReader.class
io.github.cdimascio.DotenvBuilder.class
io.github.cdimascio.DotEnvReader$isWhiteSpace$1.class
META-INF/maven/io.github.cdimascio/java-dotenv/pom.xml
META-INF/maven/io.github.cdimascio/java-dotenv/pom.properties
|
| 依赖Jar: |
kotlin-stdlib-${kotlin.version}.jar
/org.jetbrains.kotlin/kotlin-stdlib/${kotlin.version}
查看kotlin-stdlib所有版本文件
junit-${junit.version}.jar
/junit/junit/${junit.version}
查看junit所有版本文件
kotlin-test-junit-${kotlin.version}.jar
/org.jetbrains.kotlin/kotlin-test-junit/${kotlin.version}
查看kotlin-test-junit所有版本文件
|