Skip to content

Commit

Permalink
Update pom.xml and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Sep 1, 2015
1 parent 94f0c74 commit 1658b40
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ Download [latest release](https://github.com/aNNiMON/Lightweight-Stream-API/rele
<dependency>
<groupId>com.annimon</groupId>
<artifactId>stream</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>`
```
or Gradle:
```groovy
dependencies {
...
compile 'com.annimon:stream:1.0.2'
compile 'com.annimon:stream:1.0.3'
...
}
```
Expand Down
38 changes: 36 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.annimon</groupId>
<artifactId>stream</artifactId>
<version>1.0.3</version>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>

<name>Lightweight-Stream-API</name>
<description>Stream API from Java 8 rewrited on iterators for Java 7 and below.</description>
<url>https://github.com/aNNiMON/Lightweight-Stream-API</url>

<developers>
<developer>
<id>annimon</id>
<name>Victor Melnik</name>
</developer>
</developers>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<scm>
<connection>scm:git:git@github.com:aNNiMON/Lightweight-Stream-API.git</connection>
<developerConnection>scm:git:git@github.com:aNNiMON/Lightweight-Stream-API.git</developerConnection>
<url>git@github.com:aNNiMON/Lightweight-Stream-API.git</url>
<tag>v1.0.3</tag>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
Expand Down Expand Up @@ -37,6 +70,7 @@
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 1658b40

Please sign in to comment.