Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Apr 30, 2023
1 parent d586bd3 commit 2eaf6a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ Use `dotenv.get("...")` instead of Java's `System.getenv(...)`.

## Install

_Requires Java 8 or greater._
_Requires Java 11 or greater._

_Still using Java 8? Use version 2.3.2_

### Maven
```xml
Expand All @@ -39,19 +41,19 @@ _Requires Java 8 or greater._
### Gradle <4.10

```groovy
compile 'io.github.cdimascio:dotenv-java:2.3.2'
compile 'io.github.cdimascio:dotenv-java:3.0.0'
```

### Gradle >=4.10

```groovy
implementation 'io.github.cdimascio:dotenv-java:2.3.2'
implementation 'io.github.cdimascio:dotenv-java:3.0.0'
```

### Gradle Kotlin DSL

```kotlin
implementation("io.github.cdimascio:dotenv-java:2.3.2")
implementation("io.github.cdimascio:dotenv-java:3.0.0")
```

Looking for the Kotlin variant? **get [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin)**.
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>2.4.0</version>
<version>3.0.0</version>

<licenses>
<license>
Expand Down Expand Up @@ -159,6 +159,7 @@
</moduleInfo>
</module>
<overwriteExistingFiles>true</overwriteExistingFiles>
<failOnWarning>false</failOnWarning>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 2eaf6a5

Please sign in to comment.