Skip to content

Commit

Permalink
- update version to 1.1.0
Browse files Browse the repository at this point in the history
- fix Stream interface not being public
- add javadoc and sources tasks to pom.xml
  • Loading branch information
brunovinicius committed Jul 27, 2017
1 parent f8297fe commit 37be68c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 3 deletions.
46 changes: 44 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>br.com.zbra</groupId>
<artifactId>android-linq</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<packaging>jar</packaging>

<dependencies>
Expand All @@ -19,7 +19,6 @@
</dependency>
</dependencies>


<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand All @@ -44,4 +43,47 @@
<email>[email protected]</email>
</developer>
</developers>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion src/main/java/br/com/zbra/androidlinq/Stream.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @param <T> the type of the wrapped {@code Iterable<T>}
*/
interface Stream<T> extends Iterable<T> {
public interface Stream<T> extends Iterable<T> {
/**
* Filters a sequence of values based on a predicate.
*
Expand Down

0 comments on commit 37be68c

Please sign in to comment.