Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Nov 24, 2022
2 parents 1261b9e + 006fc25 commit c93e7e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,26 +32,26 @@ _Requires Java 8 or greater._
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</dependency>
```

### Gradle <4.10

```groovy
compile 'io.github.cdimascio:dotenv-java:2.3.0'
compile 'io.github.cdimascio:dotenv-java:2.3.1'
```

### Gradle >=4.10

```groovy
implementation 'io.github.cdimascio:dotenv-java:2.3.0'
implementation 'io.github.cdimascio:dotenv-java:2.3.1'
```

### Gradle Kotlin DSL

```kotlin
implementation("io.github.cdimascio:dotenv-java:2.3.0")
implementation("io.github.cdimascio:dotenv-java:2.3.1")
```

Looking for the Kotlin variant? **get [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin)**.
Expand All @@ -64,7 +64,7 @@ Create a `.env` file in the root of your project
```dosini
# formatted as key=value
MY_ENV_VAR1=some_value
MY_EVV_VAR2=some_value
MY_EVV_VAR2=some_value #some value comment
```


Expand Down

0 comments on commit c93e7e8

Please sign in to comment.