File tree Expand file tree Collapse file tree 2 files changed +45
-3
lines changed
src/main/java/br/com/zbra/androidlinq Expand file tree Collapse file tree 2 files changed +45
-3
lines changed Original file line number Diff line number Diff line change 77
88 <groupId >br.com.zbra</groupId >
99 <artifactId >android-linq</artifactId >
10- <version >1.0.1 </version >
10+ <version >1.1.0 </version >
1111 <packaging >jar</packaging >
1212
1313 <dependencies >
1919 </dependency >
2020 </dependencies >
2121
22-
2322 <properties >
2423 <maven .compiler.source>1.7</maven .compiler.source>
2524 <maven .compiler.target>1.7</maven .compiler.target>
44434544 </developer >
4645 </developers >
46+
47+ <build >
48+ <pluginManagement >
49+ <plugins >
50+ <plugin >
51+ <groupId >org.apache.maven.plugins</groupId >
52+ <artifactId >maven-source-plugin</artifactId >
53+ <version >2.0.4</version >
54+ </plugin >
55+ <plugin >
56+ <groupId >org.apache.maven.plugins</groupId >
57+ <artifactId >maven-javadoc-plugin</artifactId >
58+ <version >2.3</version >
59+ </plugin >
60+ </plugins >
61+ </pluginManagement >
62+ <plugins >
63+ <plugin >
64+ <groupId >org.apache.maven.plugins</groupId >
65+ <artifactId >maven-source-plugin</artifactId >
66+ <executions >
67+ <execution >
68+ <id >attach-sources</id >
69+ <goals >
70+ <goal >jar</goal >
71+ </goals >
72+ </execution >
73+ </executions >
74+ </plugin >
75+ <plugin >
76+ <groupId >org.apache.maven.plugins</groupId >
77+ <artifactId >maven-javadoc-plugin</artifactId >
78+ <executions >
79+ <execution >
80+ <id >attach-javadocs</id >
81+ <goals >
82+ <goal >jar</goal >
83+ </goals >
84+ </execution >
85+ </executions >
86+ </plugin >
87+ </plugins >
88+ </build >
4789</project >
Original file line number Diff line number Diff line change 1414 *
1515 * @param <T> the type of the wrapped {@code Iterable<T>}
1616 */
17- interface Stream <T > extends Iterable <T > {
17+ public interface Stream <T > extends Iterable <T > {
1818 /**
1919 * Filters a sequence of values based on a predicate.
2020 *
You can’t perform that action at this time.
0 commit comments