Skip to content

Commit 77cf53d

Browse files
committed
Version 0.8.3
1 parent c11607a commit 77cf53d

File tree

3 files changed

+9
-46
lines changed

3 files changed

+9
-46
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# StreamEx 0.8.2
1+
# StreamEx 0.8.3
22
Enhancing Java Stream API.
33

44
[![Maven Central](https://img.shields.io/maven-central/v/one.util/streamex.svg)](https://maven-badges.herokuapp.com/maven-central/one.util/streamex/)
@@ -133,7 +133,7 @@ Add this snippet to the pom.xml `dependencies` section:
133133
<dependency>
134134
<groupId>one.util</groupId>
135135
<artifactId>streamex</artifactId>
136-
<version>0.8.2</version>
136+
<version>0.8.3</version>
137137
</dependency>
138138
```
139139

@@ -142,7 +142,7 @@ Add this snippet to the pom.xml `dependencies` section:
142142
Add this snippet to the build.gradle `dependencies` section:
143143

144144
```groovy
145-
implementation 'one.util:streamex:0.8.2'
145+
implementation 'one.util:streamex:0.8.3'
146146
```
147147

148148
Pull requests are welcome.

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>one.util</groupId>
2222
<artifactId>streamex-benchmark</artifactId>
23-
<version>0.8.2</version>
23+
<version>0.8.3</version>
2424

2525
<dependencies>
2626
<dependency>

pom.xml

Lines changed: 5 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>one.util</groupId>
2222
<artifactId>streamex</artifactId>
23-
<version>0.8.2-SNAPSHOT</version>
23+
<version>0.8.3</version>
2424
<packaging>jar</packaging>
2525

2626
<name>StreamEx</name>
@@ -164,30 +164,17 @@
164164
<version>3.0.1</version>
165165
<executions>
166166
<execution>
167-
<!-- This execution used just to run javadoc with doclint and
168-
fail on any errors -->
169-
<id>verify-javadocs</id>
170-
<phase>package</phase>
171-
<goals>
172-
<goal>javadoc</goal>
173-
</goals>
174-
<configuration>
175-
<quiet>true</quiet>
176-
</configuration>
177-
</execution>
178-
<execution>
179-
<!-- This is actualy javadoc build. The doclint cannot be used
180-
here as it fails on JDK sources -->
181167
<id>attach-javadocs</id>
182168
<goals>
183169
<goal>jar</goal>
184170
</goals>
185171
<configuration>
186-
<sourcepath>${project.build.sourceDirectory};${project.basedir}/src/main/java-mr/9;${project.basedir}/src/main/java-mr/16;${project.build.directory}/jdk</sourcepath>
172+
<sourcepath>${project.build.sourceDirectory};${project.basedir}/src/main/java-mr/9;${project.basedir}/src/main/java-mr/16</sourcepath>
187173
<excludePackageNames>java.util.stream</excludePackageNames>
188174
<additionalOptions>-Xdoclint:all</additionalOptions>
189175
<noqualifier>all</noqualifier>
190-
<quiet>true</quiet>
176+
<verbose>true</verbose>
177+
<!--quiet>true</quiet-->
191178
</configuration>
192179
</execution>
193180
</executions>
@@ -205,30 +192,6 @@
205192
</dependency>
206193
</dependencies>
207194
<executions>
208-
<execution>
209-
<!-- Unpack java.util.stream package from JDK source to inherit
210-
the documentation from it -->
211-
<id>prepare</id>
212-
<phase>prepare-package</phase>
213-
<configuration>
214-
<target>
215-
<available property="src.zip" file="${java.home}/../src.zip"
216-
value="${java.home}/../src.zip" />
217-
<available property="src.zip" file="${java.home}/lib/src.zip"
218-
value="${java.home}/lib/src.zip" />
219-
<available property="src.zip" file="${java.home}/src.zip"
220-
value="${java.home}/src.zip" />
221-
<unzip src="${src.zip}" dest="${project.build.directory}/jdk">
222-
<patternset>
223-
<include name="java/util/stream/**/*.java" />
224-
</patternset>
225-
</unzip>
226-
</target>
227-
</configuration>
228-
<goals>
229-
<goal>run</goal>
230-
</goals>
231-
</execution>
232195
<execution>
233196
<id>jacoco-report</id>
234197
<phase>prepare-package</phase>
@@ -318,7 +281,7 @@
318281
<plugin>
319282
<groupId>org.sonatype.plugins</groupId>
320283
<artifactId>nexus-staging-maven-plugin</artifactId>
321-
<version>1.6.6</version>
284+
<version>1.6.13</version>
322285
<extensions>true</extensions>
323286
<configuration>
324287
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)