Skip to content

Commit 02e3556

Browse files
committed
Add maven central info, up version to 1.0.1-SNAPSHOT
1 parent 279d705 commit 02e3556

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
# Java-Timestream
22
A 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+
414
These are fully functional streams, so you can use them like any other stream, once created.
515

616
Once `Stream.takeWhile()` support is added in Java 9, this library will not be very useful. The lack
717
of a convenient `takeWhile(Predicate<T> predicate)` method in Java 8 is what lead to the creation
818
of 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

1421
This library can create streams of the following java.time classes:
1522

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@
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>
@@ -42,8 +43,8 @@
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>

0 commit comments

Comments
 (0)