Skip to content

Commit 9284448

Browse files
Version bump of Tableschema lib
1 parent 236ea5f commit 9284448

2 files changed

Lines changed: 24 additions & 31 deletions

File tree

pom.xml

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>io.frictionlessdata</groupId>
56
<artifactId>datapackage-java</artifactId>
6-
<version>0.6.4-SNAPSHOT</version>
7+
<version>0.6.5-SNAPSHOT</version>
78
<packaging>jar</packaging>
89
<issueManagement>
910
<url>https://github.com/frictionlessdata/datapackage-java/issues</url>
@@ -17,15 +18,15 @@
1718

1819
<properties>
1920
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2022
<java.version>8</java.version>
2123
<maven.compiler.source>${java.version}</maven.compiler.source>
2224
<maven.compiler.target>${java.version}</maven.compiler.target>
23-
<tableschema-java-version>0.6.4</tableschema-java-version>
25+
<tableschema-java-version>0.6.5</tableschema-java-version>
2426
<hamcrest.version>1.3</hamcrest.version>
2527
<junit.version>5.9.1</junit.version>
2628
<slf4j-simple.version>2.0.5</slf4j-simple.version>
2729
<apache-commons-collections4.version>4.4</apache-commons-collections4.version>
28-
<everit-json-schema.version>1.14.1</everit-json-schema.version>
2930
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
3031
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
3132
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
@@ -36,6 +37,7 @@
3637
<maven-release-plugin.version>3.0.0-M7</maven-release-plugin.version>
3738
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
3839
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
40+
<dependency-check-maven.version>7.1.0</dependency-check-maven.version>
3941
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
4042
</properties>
4143

@@ -192,7 +194,7 @@
192194
<plugin>
193195
<groupId>org.owasp</groupId>
194196
<artifactId>dependency-check-maven</artifactId>
195-
<version>6.0.1</version>
197+
<version>${dependency-check-maven.version}</version>
196198
<executions>
197199
<execution>
198200
<goals>
@@ -212,20 +214,6 @@
212214
</resources>
213215
</build>
214216
<dependencies>
215-
<!-- Unit Testing -->
216-
<dependency>
217-
<groupId>org.junit.jupiter</groupId>
218-
<artifactId>junit-jupiter-engine</artifactId>
219-
<version>${junit.version}</version>
220-
<scope>test</scope>
221-
</dependency>
222-
223-
<dependency>
224-
<groupId>org.junit.vintage</groupId>
225-
<artifactId>junit-vintage-engine</artifactId>
226-
<version>${junit.version}</version>
227-
<scope>test</scope>
228-
</dependency>
229217

230218
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
231219
<dependency>
@@ -235,14 +223,6 @@
235223
<scope>test</scope>
236224
</dependency>
237225

238-
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all -->
239-
<dependency>
240-
<groupId>org.hamcrest</groupId>
241-
<artifactId>hamcrest-all</artifactId>
242-
<version>${hamcrest.version}</version>
243-
<scope>test</scope>
244-
</dependency>
245-
246226
<dependency>
247227
<groupId>org.apache.commons</groupId>
248228
<artifactId>commons-collections4</artifactId>
@@ -263,5 +243,20 @@
263243
<scope>compile</scope>
264244
</dependency>
265245
-->
266-
</dependencies>
267-
</project>
246+
247+
<!-- Unit Testing -->
248+
<dependency>
249+
<groupId>org.junit.jupiter</groupId>
250+
<artifactId>junit-jupiter-engine</artifactId>
251+
<version>${junit.version}</version>
252+
<scope>test</scope>
253+
</dependency>
254+
255+
<dependency>
256+
<groupId>org.junit.vintage</groupId>
257+
<artifactId>junit-vintage-engine</artifactId>
258+
<version>${junit.version}</version>
259+
<scope>test</scope>
260+
</dependency>
261+
</dependencies>
262+
</project>

src/test/java/io/frictionlessdata/datapackage/PackageTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,6 @@ public void testSaveToAndReadFromZipFile() throws Exception{
450450
// the `datapackage.json` is in a folder `countries-and-currencies` on the top
451451
// level of the zip file.
452452
@Test
453-
@Disabled
454453
public void testReadFromZipFileWithDirectoryHierarchy() throws Exception{
455454
String[] usdTestData = new String[]{"USD", "US Dollar", "$"};
456455
String[] gbpTestData = new String[]{"GBP", "Pound Sterling", "£"};
@@ -483,7 +482,6 @@ public void testClosesZipFile() throws Exception{
483482

484483
// Archive file name doesn't end with ".zip"
485484
@Test
486-
@Disabled
487485
public void testReadFromZipFileWithDifferentSuffix() throws Exception{
488486
String[] usdTestData = new String[]{"USD", "US Dollar", "$"};
489487
String[] gbpTestData = new String[]{"GBP", "Pound Sterling", "£"};

0 commit comments

Comments
 (0)