File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed
Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 11# Java-Timestream
22A set of builders that create streams of java.time objects.
33
4+ To use this library in your project, add this to your dependencies:
5+
6+ ``` xml
7+ <dependency >
8+ <groupId >com.ginsberg</groupId >
9+ <artifactId >java-timestream</artifactId >
10+ <version >1.0.0</version >
11+ </dependency
12+ ```
13+
414These are fully functional streams, so you can use them like any other stream, once created.
515
616Once `Stream.takeWhile()` support is added in Java 9, this library will not be very useful. The lack
717of a convenient `takeWhile(Predicate<T> predicate)` method in Java 8 is what lead to the creation
818of this library.
919
10- To get Java-Timestream, clone this repository. I am working to get this in Maven Central ASAP.
11-
12- git clone git://github.com/tginsberg/java-timestream.git
1320
1421This library can create streams of the following java.time classes:
1522
Original file line number Diff line number Diff line change 2222 ~ SOFTWARE.
2323 -->
2424
25- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
25+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
26+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2627
2728 <modelVersion >4.0.0</modelVersion >
2829 <name >java-timestream</name >
2930 <groupId >com.ginsberg</groupId >
3031 <artifactId >java-timestream</artifactId >
3132 <description >A set of builders that create streams of java.time objects</description >
3233 <url >https://github.com/tginsberg/java-timestream</url >
33- <version >1.0.0 -SNAPSHOT</version >
34+ <version >1.0.1 -SNAPSHOT</version >
3435 <packaging >jar</packaging >
3536
3637 <issueManagement >
4243 <url >https://github.com/tginsberg/java-timestream</url >
4344 <connection >scm:git:git://github.com/tginsberg/java-timestream.git</connection >
4445 <developerConnection >scm:git:git@github.com:tginsberg/java-timestream.git</developerConnection >
45- <tag >HEAD</tag >
46- </scm >
46+ <tag >HEAD</tag >
47+ </scm >
4748
4849 <developers >
4950 <developer >
You can’t perform that action at this time.
0 commit comments