Skip to content

Commit 2eaf6a5

Browse files
committedApr 30, 2023
v3.0.0
1 parent d586bd3 commit 2eaf6a5

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed
 

‎README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ Use `dotenv.get("...")` instead of Java's `System.getenv(...)`.
2525

2626
## Install
2727

28-
_Requires Java 8 or greater._
28+
_Requires Java 11 or greater._
29+
30+
_Still using Java 8? Use version 2.3.2_
2931

3032
### Maven
3133
```xml
@@ -39,19 +41,19 @@ _Requires Java 8 or greater._
3941
### Gradle <4.10
4042

4143
```groovy
42-
compile 'io.github.cdimascio:dotenv-java:2.3.2'
44+
compile 'io.github.cdimascio:dotenv-java:3.0.0'
4345
```
4446

4547
### Gradle >=4.10
4648

4749
```groovy
48-
implementation 'io.github.cdimascio:dotenv-java:2.3.2'
50+
implementation 'io.github.cdimascio:dotenv-java:3.0.0'
4951
```
5052

5153
### Gradle Kotlin DSL
5254

5355
```kotlin
54-
implementation("io.github.cdimascio:dotenv-java:2.3.2")
56+
implementation("io.github.cdimascio:dotenv-java:3.0.0")
5557
```
5658

5759
Looking for the Kotlin variant? **get [dotenv-kotlin](https://github.com/cdimascio/dotenv-kotlin)**.

‎pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>io.github.cdimascio</groupId>
1313
<artifactId>dotenv-java</artifactId>
14-
<version>2.4.0</version>
14+
<version>3.0.0</version>
1515

1616
<licenses>
1717
<license>
@@ -159,6 +159,7 @@
159159
</moduleInfo>
160160
</module>
161161
<overwriteExistingFiles>true</overwriteExistingFiles>
162+
<failOnWarning>false</failOnWarning>
162163
</configuration>
163164
</execution>
164165
</executions>

0 commit comments

Comments
 (0)
Please sign in to comment.