Skip to content

Commit 8103047

Browse files
committedNov 27, 2021
v2.2.2
1 parent 74945a5 commit 8103047

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed
 

‎pom.xml

+8-8
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.2.1</version>
14+
<version>2.2.2</version>
1515

1616
<licenses>
1717
<license>
@@ -260,15 +260,15 @@
260260
<id>ossrh</id>
261261
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
262262
</snapshotRepository>
263-
<repository>
264-
<id>ossrh</id>
265-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
266-
</repository>
267263
<!-- <repository>-->
268-
<!-- <id>github</id>-->
269-
<!-- <name>Carmine M DiMascio</name>-->
270-
<!-- <url>https://maven.pkg.github.com/cdimascio/dotenv-java</url>-->
264+
<!-- <id>ossrh</id>-->
265+
<!-- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>-->
271266
<!-- </repository>-->
267+
<repository>
268+
<id>github</id>
269+
<name>Carmine M DiMascio</name>
270+
<url>https://maven.pkg.github.com/cdimascio/dotenv-java</url>
271+
</repository>
272272
</distributionManagement>
273273
<profiles>
274274
<profile>

‎src/main/java/io/github/cdimascio/dotenv/DotenvBuilder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import static java.util.stream.Collectors.*;
99

1010
/**
11-
* Builds and loads and {@link Dotenv} instance
11+
* Builds and loads and {@link Dotenv} instance.
1212
* @see Dotenv#configure()
1313
*/
1414
public class DotenvBuilder {
@@ -19,7 +19,7 @@ public class DotenvBuilder {
1919
private boolean throwIfMalformed = true;
2020

2121
/**
22-
* Sets the directory containing the .env file
22+
* Sets the directory containing the .env file.
2323
* @param path the directory containing the .env file
2424
* @return this {@link DotenvBuilder}
2525
*/
@@ -28,7 +28,7 @@ public DotenvBuilder directory(String path) {
2828
return this;
2929
}
3030
/**
31-
* Sets the name of the .env file. The default is .env
31+
* Sets the name of the .env file. The default is .env.
3232
* @param name the filename
3333
* @return this {@link DotenvBuilder}
3434
*/
@@ -38,7 +38,7 @@ public DotenvBuilder filename(String name) {
3838
}
3939

4040
/**
41-
* Does not throw an exception when .env is missing
41+
* Does not throw an exception when .env is missing.
4242
* @return this {@link DotenvBuilder}
4343
*/
4444
public DotenvBuilder ignoreIfMissing() {
@@ -47,7 +47,7 @@ public DotenvBuilder ignoreIfMissing() {
4747
}
4848

4949
/**
50-
* Does not throw an exception when .env is malformed
50+
* Does not throw an exception when .env is malformed.
5151
* @return this {@link DotenvBuilder}
5252
*/
5353
public DotenvBuilder ignoreIfMalformed() {
@@ -56,7 +56,7 @@ public DotenvBuilder ignoreIfMalformed() {
5656
}
5757

5858
/**
59-
* Sets each environment variable as system properties
59+
* Sets each environment variable as system properties.
6060
* @return this {@link DotenvBuilder}
6161
*/
6262
public DotenvBuilder systemProperties() {
@@ -65,7 +65,7 @@ public DotenvBuilder systemProperties() {
6565
}
6666

6767
/**
68-
* Load the contents of .env into the virtual environment
68+
* Load the contents of .env into the virtual environment.
6969
* @return a new {@link Dotenv} instance
7070
* @throws DotenvException when an error occurs
7171
*/

0 commit comments

Comments
 (0)
Please sign in to comment.