Set version to 3.2
This commit is contained in:
parent
b3df40ffa8
commit
e3417bff49
@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
|
@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>jython</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
|
||||
<name>OpenRefine - Jython extension</name>
|
||||
<description>OpenRefine integration of Python as an expression language</description>
|
||||
@ -13,7 +13,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
|
@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>phonetic</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
|
||||
<name>OpenRefine - Phonetic clustering extension</name>
|
||||
<description>Adds a few advanced phonetic clustering methods</description>
|
||||
@ -13,7 +13,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
|
||||
<name>OpenRefine - extensions</name>
|
||||
<description>Extensions add importers, exporters and other sorts of features to OpenRefine</description>
|
||||
@ -14,7 +14,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>openrefine</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
|
@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>extensions</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
|
@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>openrefine</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
@ -63,7 +63,7 @@ import edu.mit.simile.butterfly.Butterfly;
|
||||
import edu.mit.simile.butterfly.ButterflyModule;
|
||||
|
||||
public class RefineServlet extends Butterfly {
|
||||
static private String ASSIGNED_VERSION = "3.2-beta";
|
||||
static private String ASSIGNED_VERSION = "3.2";
|
||||
|
||||
static public String VERSION = "";
|
||||
static public String REVISION = "";
|
||||
|
@ -9,7 +9,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>openrefine</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
<properties>
|
||||
<rootdir>${basedir}/..</rootdir>
|
||||
|
2
pom.xml
2
pom.xml
@ -5,7 +5,7 @@
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>openrefine</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
|
||||
<name>OpenRefine</name>
|
||||
<description>OpenRefine is a free, open source power tool for working with messy data and improving it</description>
|
||||
|
8
refine
8
refine
@ -712,11 +712,11 @@ checkJavaMajorVersion() {
|
||||
# Java 9+ starts with x using semver versioning
|
||||
major=`echo ${java_ver} | sed -E 's/([0-9]+)(-ea|(\.[0-9]+)*)/\1/g'`
|
||||
fi
|
||||
if (( ${major} < 7 )); then
|
||||
error "OpenRefine requires Java version 7 or later. If you have multiple versions of Java installed, please set the environment variable JAVA_HOME to the correct version."
|
||||
if (( ${major} < 8 )); then
|
||||
error "OpenRefine requires Java version 8 or later. If you have multiple versions of Java installed, please set the environment variable JAVA_HOME to the correct version."
|
||||
fi
|
||||
if (( ${major} > 9 )); then
|
||||
echo "WARNING: OpenRefine is not tested and not recommended for use with Java versions greater than 9."
|
||||
if (( ${major} > 12 )); then
|
||||
echo "WARNING: OpenRefine is not tested and not recommended for use with Java versions greater than 12."
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.openrefine</groupId>
|
||||
<artifactId>openrefine</artifactId>
|
||||
<version>3.2-SNAPSHOT</version>
|
||||
<version>3.2</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
Loading…
Reference in New Issue
Block a user