Skip to content

Commit f0b5d79

Browse files
Dependency version bump
1 parent ce38555 commit f0b5d79

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.frictionlessdata</groupId>
55
<artifactId>tableschema-java</artifactId>
6-
<version>0.6.5-SNAPSHOT</version>
6+
<version>0.6.6-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<issueManagement>
99
<url>https://github.com/frictionlessdata/tableschema-java/issues</url>
@@ -28,7 +28,7 @@
2828
<jackson.version>2.14.1</jackson.version>
2929
<junit.version>5.9.1</junit.version>
3030
<locationtech-jts.version>1.19.0</locationtech-jts.version>
31-
<networknt-validator-version>1.0.75</networknt-validator-version>
31+
<networknt-validator-version>1.0.76</networknt-validator-version>
3232
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
3333
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
3434
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
@@ -69,6 +69,7 @@
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-resources-plugin</artifactId>
7171
<version>${maven-resources-plugin.version}</version>
72+
<!--
7273
<executions>
7374
<execution>
7475
<id>copy-javadoc</id>
@@ -87,6 +88,7 @@
8788
</configuration>
8889
</execution>
8990
</executions>
91+
-->
9092
<configuration>
9193
<encoding>UTF-8</encoding>
9294
</configuration>
@@ -122,6 +124,7 @@
122124
<quiet>true</quiet>
123125
<encoding>UTF-8</encoding>
124126
<source>${java.version}</source>
127+
125128
</configuration>
126129
<executions>
127130
<execution>

src/main/java/io/frictionlessdata/tableschema/Table.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public Iterator<Object[]> iterator() {
247247

248248
/**
249249
* This is the most flexible way to read data from a Table referencing a file or URL. Each row of the table
250-
* will be returned as an either an Object array or a Map<String, Object>, depending on Options.
250+
* will be returned as an either an Object array or a Map&lt;String, Object&gt;, depending on Options.
251251
* Options allow you to tailor the behavior of the Iterator to your needs:
252252
* <ul>
253253
* <li> String arrays (parameter `cast` = false)</li>
@@ -257,7 +257,7 @@ public Iterator<Object[]> iterator() {
257257
* <li> or in an "extended" form (parameter `extended` = true) that returns an Object array where the first
258258
* entry is the row number, the second is a String array holding the headers, and the third is an Object
259259
* array holding the row data converted to Java objects.</li>
260-
* < li> Resolving references to other data sources (parameter `relations` = true)</li>
260+
* <li> Resolving references to other data sources (parameter `relations` = true)</li>
261261
* </ul>
262262
*
263263
* The following rules apply:

0 commit comments

Comments
 (0)