Skip to content

Commit 4af0f8e

Browse files
author
fmcarvalho
committed
Upgrade to Java 11 and all dependent maven plugins such as Jacoco and Javadocs
1 parent 6457ffe commit 4af0f8e

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

Diff for: README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ simply add this dependency:
4040
<dependency>
4141
<groupId>com.github.javasync</groupId>
4242
<artifactId>streamemo</artifactId>
43-
<version>1.0.0</version>
43+
<version>1.0.1</version>
4444
</dependency>
4545
```
4646

@@ -51,3 +51,16 @@ dependencies {
5151
compile 'com.github.javasync:streamemo:1.0.0'
5252
}
5353
```
54+
55+
## Changelog
56+
57+
### 1.0.1 (August, 2019)
58+
59+
Add the ability to close the original stream.
60+
Now the the `onClose()` method of a stream from the `Supplier.get()`
61+
will trigger a call to the original Stream's onClose() method.
62+
Contribution from shollander issue #2.
63+
64+
### 1.0.0 (June, 2018)
65+
66+
First release according to the article "How to Reuse Java Streams" published on DZone at Jun. 12, 18

Diff for: pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
</distributionManagement>
4545
<properties>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47-
<maven.compiler.source>1.9</maven.compiler.source>
48-
<maven.compiler.target>1.9</maven.compiler.target>
47+
<maven.compiler.source>11</maven.compiler.source>
48+
<maven.compiler.target>11</maven.compiler.target>
4949
</properties>
5050
<build>
5151
<plugins>
@@ -91,7 +91,7 @@
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-javadoc-plugin</artifactId>
94-
<version>2.9.1</version>
94+
<version>3.0.1</version>
9595
<executions>
9696
<execution>
9797
<id>attach-javadocs</id>
@@ -104,7 +104,7 @@
104104
<plugin>
105105
<groupId>org.jacoco</groupId>
106106
<artifactId>jacoco-maven-plugin</artifactId>
107-
<version>0.7.9</version>
107+
<version>0.8.2</version>
108108
<executions>
109109
<execution>
110110
<id>default-prepare-agent</id>

0 commit comments

Comments
 (0)