From f4af25afa3f32721a6f95aedcc1e7ba3ca1a2279 Mon Sep 17 00:00:00 2001 From: Markus Kreth Date: Mon, 10 Dec 2018 11:32:50 +0100 Subject: [PATCH] Update java to 11, spring to 2.1.1.RELEASE and vaadin to 8.6.2 --- .classpath | 8 +++---- .settings/org.eclipse.jdt.core.prefs | 8 +++---- ....eclipse.wst.common.project.facet.core.xml | 2 +- pom.xml | 15 ++++++++----- .../ui/components/CalendarComponent.java | 2 +- .../themes/vaadin-clubhelpertheme/styles.css | 22 ++++++++++++++++++- 6 files changed, 41 insertions(+), 16 deletions(-) diff --git a/.classpath b/.classpath index aa94cd6..9305bd2 100644 --- a/.classpath +++ b/.classpath @@ -30,16 +30,16 @@ - + + + - + - - diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index f6255c7..bdb8c1a 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,10 +1,10 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.methodParameters=generate -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 -org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning -org.eclipse.jdt.core.compiler.release=disabled -org.eclipse.jdt.core.compiler.source=1.8 +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=11 diff --git a/.settings/org.eclipse.wst.common.project.facet.core.xml b/.settings/org.eclipse.wst.common.project.facet.core.xml index 2d1f631..bd563f8 100644 --- a/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -3,6 +3,6 @@ - + diff --git a/pom.xml b/pom.xml index b7f4575..c15da27 100644 --- a/pom.xml +++ b/pom.xml @@ -19,17 +19,15 @@ org.springframework.boot spring-boot-starter-parent - 2.1.0.RELEASE + 2.1.1.RELEASE UTF-8 UTF-8 - 1.8 - ${java.version} - ${java.version} - 8.5.2 + 11 + 8.6.2 1.23.0 v4-rev488-1.23.0 v3-rev271-1.23.0 @@ -250,6 +248,13 @@ true + + org.apache.maven.plugins + maven-compiler-plugin + + ${java.version} + + org.apache.maven.plugins diff --git a/src/main/java/de/kreth/vaadin/clubhelper/vaadinclubhelper/ui/components/CalendarComponent.java b/src/main/java/de/kreth/vaadin/clubhelper/vaadinclubhelper/ui/components/CalendarComponent.java index 944e491..bbabeda 100644 --- a/src/main/java/de/kreth/vaadin/clubhelper/vaadinclubhelper/ui/components/CalendarComponent.java +++ b/src/main/java/de/kreth/vaadin/clubhelper/vaadinclubhelper/ui/components/CalendarComponent.java @@ -25,7 +25,6 @@ import org.vaadin.addon.calendar.ui.CalendarComponentEvents.ForwardEvent; import org.vaadin.addon.calendar.ui.CalendarComponentEvents.ItemClickHandler; import com.vaadin.contextmenu.ContextMenu; -import com.vaadin.contextmenu.MenuItem; import com.vaadin.server.StreamResource; import com.vaadin.shared.Registration; import com.vaadin.ui.AbstractComponent; @@ -35,6 +34,7 @@ import com.vaadin.ui.Button.ClickEvent; import com.vaadin.ui.CustomComponent; import com.vaadin.ui.HorizontalLayout; import com.vaadin.ui.Label; +import com.vaadin.ui.MenuBar.MenuItem; import com.vaadin.ui.Notification; import com.vaadin.ui.VerticalLayout; import com.vaadin.ui.Window; diff --git a/src/main/webapp/VAADIN/themes/vaadin-clubhelpertheme/styles.css b/src/main/webapp/VAADIN/themes/vaadin-clubhelpertheme/styles.css index f78b290..70d217b 100644 --- a/src/main/webapp/VAADIN/themes/vaadin-clubhelpertheme/styles.css +++ b/src/main/webapp/VAADIN/themes/vaadin-clubhelpertheme/styles.css @@ -1091,7 +1091,7 @@ */ .v-vaadin-version:after { - content: "8.5.2"; + content: "8.6.2"; } .v-widget { @@ -4903,6 +4903,10 @@ div.v-layout.v-horizontal.v-widget { left: 0; } +.vaadin-clubhelpertheme .v-grid-body .v-grid-header > .v-grid-row { + position: relative; +} + .vaadin-clubhelpertheme .v-grid-row { display: block; } @@ -9551,6 +9555,10 @@ div.v-layout.v-horizontal.v-widget { left: 0; } +.vaadin-clubhelpertheme .v-tree8-body .v-tree8-header > .v-tree8-row { + position: relative; +} + .vaadin-clubhelpertheme .v-tree8-row { display: block; } @@ -10629,6 +10637,10 @@ div.v-layout.v-horizontal.v-widget { left: 0; } +.vaadin-clubhelpertheme .v-treegrid-body .v-treegrid-header > .v-treegrid-row { + position: relative; +} + .vaadin-clubhelpertheme .v-treegrid-row { display: block; } @@ -13007,6 +13019,14 @@ div.v-layout.v-horizontal.v-widget { text-align: right; } +.vaadin-clubhelpertheme .v-tabsheet-right-aligned-tabs .v-tabsheet-spacertd { + display: inline-block !important; +} + +.vaadin-clubhelpertheme .v-tabsheet-right-aligned-tabs .v-tabsheet-scroller { + padding-left: 9px; +} + .vaadin-clubhelpertheme .v-tabsheet-padded-tabbar > .v-tabsheet-tabcontainer .v-tabsheet-tabs { padding: 0 9px; }