Browse Source

Use atmosphere 1.0.14.vaadin3 which fixes Android 4.1 support (#12101)

Change-Id: I75cd1eebeeb5836b9205a9a1e28795be300d135a
tags/7.1.1
Artur Signell 11 years ago
parent
commit
90ed6576c0
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      push/build.xml
  2. 1
    1
      push/ivy.xml
  3. 1
    1
      server/src/com/vaadin/server/Constants.java

+ 1
- 1
push/build.xml View File

@@ -13,7 +13,7 @@
<property name="vaadinPush.js" location="${result.dir}/js/VAADIN/vaadinPush.js" />

<!-- Keep the version number in sync with ivy.xml and server/src/com/vaadin/server/Constants.java-->
<property name="atmosphere.version" value="1.0.14.vaadin2" />
<property name="atmosphere.version" value="1.0.14.vaadin3" />
<property name="jquery.version" value="1.7.2" />

<path id="classpath.compile.custom" />

+ 1
- 1
push/ivy.xml View File

@@ -28,7 +28,7 @@
<!-- Atmosphere -->
<!-- Keep the version number in sync with build.xml -->
<dependency org="com.vaadin.external.atmosphere" name="atmosphere-runtime"
rev="1.0.14.vaadin2" conf="build,ide,test -> default">
rev="1.0.14.vaadin3" conf="build,ide,test -> default">
</dependency>
</dependencies>


+ 1
- 1
server/src/com/vaadin/server/Constants.java View File

@@ -65,7 +65,7 @@ public interface Constants {
+ " Widgetset version: %s\n"
+ "=================================================================";

static final String REQUIRED_ATMOSPHERE_VERSION = "1.0.14.vaadin2";
static final String REQUIRED_ATMOSPHERE_VERSION = "1.0.14.vaadin3";

static final String INVALID_ATMOSPHERE_VERSION_WARNING = "\n"
+ "=================================================================\n"

Loading…
Cancel
Save