File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,26 +32,26 @@ _Requires Java 8 or greater._
32
32
<dependency >
33
33
<groupId >io.github.cdimascio</groupId >
34
34
<artifactId >dotenv-java</artifactId >
35
- <version >2.3.0 </version >
35
+ <version >2.3.1 </version >
36
36
</dependency >
37
37
```
38
38
39
39
### Gradle <4.10
40
40
41
41
``` groovy
42
- compile 'io.github.cdimascio:dotenv-java:2.3.0 '
42
+ compile 'io.github.cdimascio:dotenv-java:2.3.1 '
43
43
```
44
44
45
45
### Gradle >=4.10
46
46
47
47
``` groovy
48
- implementation 'io.github.cdimascio:dotenv-java:2.3.0 '
48
+ implementation 'io.github.cdimascio:dotenv-java:2.3.1 '
49
49
```
50
50
51
51
### Gradle Kotlin DSL
52
52
53
53
``` kotlin
54
- implementation(" io.github.cdimascio:dotenv-java:2.3.0 " )
54
+ implementation(" io.github.cdimascio:dotenv-java:2.3.1 " )
55
55
```
56
56
57
57
Looking for the Kotlin variant? ** get [ dotenv-kotlin] ( https://github.com/cdimascio/dotenv-kotlin ) ** .
@@ -64,7 +64,7 @@ Create a `.env` file in the root of your project
64
64
``` dosini
65
65
# formatted as key=value
66
66
MY_ENV_VAR1 =some_value
67
- MY_EVV_VAR2 =some_value
67
+ MY_EVV_VAR2 =some_value # some value comment
68
68
```
69
69
70
70
You can’t perform that action at this time.
0 commit comments