Skip to content

Commit

Permalink
Update to OpenRefine 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekSuchanek committed Sep 29, 2020
1 parent b3c6cda commit 2f4012d
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Updated to OpenRefine 3.4.1

## [1.6.0]

### Changed
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
FROM maven:3.6-jdk-8-slim as builder

# You can specify OpenRefine version by: --build-arg OPENREFINE_VERSION=X.Y
# Possible versions: 3.3 (supported, default), 3.2
ARG OPENREFINE_VERSION=3.3
# Possible versions: 3.4.1 (supported, default), 3.3, 3.2
ARG OPENREFINE_VERSION=3.4.1

WORKDIR /usr/src/app/

Expand All @@ -16,7 +16,7 @@ RUN mvn clean package
# Prepare OpenRefine and metadata extension
RUN curl -sSL https://github.com/OpenRefine/OpenRefine/releases/download/$OPENREFINE_VERSION/openrefine-linux-$OPENREFINE_VERSION.tar.gz | tar xz
RUN mv openrefine-$OPENREFINE_VERSION openrefine
RUN tar xzf target/metadata-OpenRefine-3.3.tgz --directory openrefine/webapp/extensions
RUN tar xzf target/metadata-OpenRefine-3.4.1.tgz --directory openrefine/webapp/extensions

# ===================================================================
# Main image
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<maven.compiler.target>1.8</maven.compiler.target>

<!-- Core - local -->
<openrefine.version>3.3</openrefine.version>
<openrefine.version>3.4.1</openrefine.version>
<servlet.version>2.5</servlet.version>
<butterfly.version>1.0.2</butterfly.version>
<slf4j.version>1.7.18</slf4j.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Sat Feb 08 11:22:29 CET 2020
main-3.3.pom>=
main-3.3.jar>=
#Mon Sep 28 21:29:50 CEST 2020
main-3.4.1.jar>=
main-3.4.1.pom>=
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openrefine</groupId>
<artifactId>main</artifactId>
<version>3.3</version>
<description>POM was created from install:install-file</description>
<modelVersion>4.0.0</modelVersion>
<groupId>org.openrefine</groupId>
<artifactId>main</artifactId>
<version>3.4.1</version>
<description>POM was created from install:install-file</description>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<groupId>org.openrefine</groupId>
<artifactId>main</artifactId>
<versioning>
<release>3.3</release>
<release>3.4.1</release>
<versions>
<version>3.3</version>
<version>3.4.1</version>
</versions>
<lastUpdated>20200208113600</lastUpdated>
<lastUpdated>20200928192950</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion src/assembly/module.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>OpenRefine-3.3</id>
<id>OpenRefine-3.4.1</id>
<includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory>metadata</baseDirectory>
<formats>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/project.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
artifactId=${project.artifactId}
version=${project.version}
openrefineVersion=${openrefine.version}
openrefineSupported=3.3 3.2
openrefineSupported=3.4 3.3 3.2

0 comments on commit 2f4012d

Please sign in to comment.