diff options
author | Tatu Lund <tatu@vaadin.com> | 2021-12-01 12:54:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-01 12:54:03 +0200 |
commit | 3b5d228c3137eca4e1c934ffa13008677b46dc28 (patch) | |
tree | 53939eb248beb427422a7e935c5293d4c58935db | |
parent | 224a81cf53c860e0c0feb357217f98939eeb3fc6 (diff) | |
download | vaadin-framework-7.7.29.tar.gz vaadin-framework-7.7.29.zip |
chore: Update dependencies (#12493)7.7.29
* Update dependencies
atmosphere-runtime: 2.2.13.vaadin3
jsoup: 1.14.3
* Update Atmosphere version in Constants.java
Co-authored-by: Anna Koskinen <Ansku@users.noreply.github.com>
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | server/src/main/java/com/vaadin/server/Constants.java | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -25,7 +25,7 @@ <!-- Used version numbers for dependencies --> <commons-io.version>2.4</commons-io.version> <google.appengine.version>1.7.7</google.appengine.version> - <jsoup.version>1.14.2</jsoup.version> + <jsoup.version>1.14.3</jsoup.version> <liferay.portal.version>6.0.2</liferay.portal.version> <vaadin.sass.version>0.9.13</vaadin.sass.version> @@ -41,7 +41,7 @@ <!-- Atmosphere versions --> <!-- Note that this should be kept in sync with the class Constants --> - <atmosphere.runtime.version>2.2.13.vaadin2</atmosphere.runtime.version> + <atmosphere.runtime.version>2.2.13.vaadin3</atmosphere.runtime.version> <atmosphere.js.version>2.2.13.vaadin5</atmosphere.js.version> <!-- Dependency unpack directory --> diff --git a/server/src/main/java/com/vaadin/server/Constants.java b/server/src/main/java/com/vaadin/server/Constants.java index 558b2662e8..d64971d59d 100644 --- a/server/src/main/java/com/vaadin/server/Constants.java +++ b/server/src/main/java/com/vaadin/server/Constants.java @@ -66,7 +66,7 @@ public interface Constants { + "================================================================="; // Keep the version number in sync with pom.xml - static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.2.13.vaadin2"; + static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.2.13.vaadin3"; static final String INVALID_ATMOSPHERE_VERSION_WARNING = "\n" + "=================================================================\n" |