Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2019-08-07 10:39:37 +0000
committerSravan Kumar Lakkimsetti2019-08-07 10:39:58 +0000
commit969932fb605abee1862e89b45dc4d040542a8727 (patch)
tree284a9f4f86f24bae02744e7baa0cfbefccee7375
parent50f34d1a4e71517ecf821716ada1f96c4a5b8cfb (diff)
downloadeclipse.platform.swt-R4_5_maintenance.tar.gz
eclipse.platform.swt-R4_5_maintenance.tar.xz
eclipse.platform.swt-R4_5_maintenance.zip
Change-Id: I8f05907a88782d5940eeb98555a697aaa6ccf5dd Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/common_j2me/org/eclipse/swt/internal/Library.java2
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/common_j2se/org/eclipse/swt/internal/Library.java2
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/library/make_common.mak4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/version.txt2
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml1
-rw-r--r--bundles/org.eclipse.swt/pom.xml2
6 files changed, 7 insertions, 6 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2me/org/eclipse/swt/internal/Library.java b/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2me/org/eclipse/swt/internal/Library.java
index e4b7e22818..07bcf9d231 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2me/org/eclipse/swt/internal/Library.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2me/org/eclipse/swt/internal/Library.java
@@ -26,7 +26,7 @@ public class Library {
/**
* SWT Minor version number (must be in the range 0..999)
*/
- static int MINOR_VERSION = 530;
+ static int MINOR_VERSION = 531;
/**
* SWT revision number (must be >= 0)
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2se/org/eclipse/swt/internal/Library.java b/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2se/org/eclipse/swt/internal/Library.java
index 4b211a153f..e63811e697 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2se/org/eclipse/swt/internal/Library.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/common_j2se/org/eclipse/swt/internal/Library.java
@@ -26,7 +26,7 @@ public class Library {
/**
* SWT Minor version number (must be in the range 0..999)
*/
- static int MINOR_VERSION = 530;
+ static int MINOR_VERSION = 531;
/**
* SWT revision number (must be >= 0)
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/library/make_common.mak b/bundles/org.eclipse.swt/Eclipse SWT/common/library/make_common.mak
index 52a7e13de6..5ab8d80109 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/library/make_common.mak
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/library/make_common.mak
@@ -10,5 +10,5 @@
#*******************************************************************************
maj_ver=4
-min_ver=530
-comma_ver=4,5,3,0
+min_ver=531
+comma_ver=4,5,3,1
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/version.txt b/bundles/org.eclipse.swt/Eclipse SWT/common/version.txt
index 4b16b6ee26..dab54ce6bd 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/version.txt
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/version.txt
@@ -1 +1 @@
-version 4.530 \ No newline at end of file
+version 4.531 \ No newline at end of file
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 5bb472b205..bb271d4b62 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -857,6 +857,7 @@
<target name="copy.library.src">
<script language="javascript">
<![CDATA[
+ load("nashorn:mozilla_compat.js");
importClass(java.io.File);
importClass(java.io.StreamTokenizer);
importClass(java.io.StringReader);
diff --git a/bundles/org.eclipse.swt/pom.xml b/bundles/org.eclipse.swt/pom.xml
index 0f59413179..843f17be67 100644
--- a/bundles/org.eclipse.swt/pom.xml
+++ b/bundles/org.eclipse.swt/pom.xml
@@ -21,7 +21,7 @@
<version>3.104.102-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
- <forceContextQualifier>v20161028-1455</forceContextQualifier>
+ <forceContextQualifier>v20190807-1455</forceContextQualifier>
</properties>
<build>
<plugins>

Back to the top