File tree Expand file tree Collapse file tree 15 files changed +56
-41
lines changed
vaadin-maps-leaflet-flow-demo Expand file tree Collapse file tree 15 files changed +56
-41
lines changed Original file line number Diff line number Diff line change
1
+ # Auto detect text files and perform LF normalization
2
+ * text =auto
Original file line number Diff line number Diff line change @@ -20,7 +20,3 @@ updates:
20
20
# Run it at a specific time so that we don't get emails all day long
21
21
time : " 00:00"
22
22
open-pull-requests-limit : 10
23
- ignore :
24
- - dependency-name : " org.springframework.boot:*"
25
- # Version 3+ requires Vaadin 24
26
- versions : " >=3.0.0"
Original file line number Diff line number Diff line change 21
21
22
22
strategy :
23
23
matrix :
24
- java : [11, 17]
24
+ java : [17]
25
25
distribution : [temurin]
26
26
27
27
steps :
Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ permissions:
13
13
pull-requests : write
14
14
15
15
jobs :
16
- check_code : # Validates the code (see develop.yml)
16
+ check_code : # Validates the code
17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- uses : actions/checkout@v3
20
20
21
21
- name : Set up JDK
22
22
uses : actions/setup-java@v3
23
23
with :
24
- java-version : ' 11 '
24
+ java-version : ' 17 '
25
25
distribution : ' temurin'
26
26
cache : ' maven'
27
27
@@ -122,7 +122,7 @@ jobs:
122
122
- name : Set up JDK Apache Maven Central
123
123
uses : actions/setup-java@v3
124
124
with : # running setup-java again overwrites the settings.xml
125
- java-version : ' 11 '
125
+ java-version : ' 17 '
126
126
distribution : ' temurin'
127
127
server-id : ossrh
128
128
server-username : MAVEN_CENTRAL_USERNAME
@@ -154,7 +154,7 @@ jobs:
154
154
- name : Setup - Java
155
155
uses : actions/setup-java@v3
156
156
with :
157
- java-version : ' 11 '
157
+ java-version : ' 17 '
158
158
distribution : ' temurin'
159
159
cache : ' maven'
160
160
Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ jobs:
30
30
with :
31
31
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
32
32
33
- - name : Set up JDK 11
33
+ - name : Set up JDK
34
34
uses : actions/setup-java@v3
35
35
with :
36
36
distribution : ' temurin'
37
- java-version : 11
37
+ java-version : 17
38
38
39
39
- name : Cache SonarCloud packages
40
40
uses : actions/cache@v3
Original file line number Diff line number Diff line change 16
16
uses : actions/setup-java@v3
17
17
with : # running setup-java again overwrites the settings.xml
18
18
distribution : ' temurin'
19
- java-version : ' 11 '
19
+ java-version : ' 17 '
20
20
server-id : ossrh
21
21
server-username : MAVEN_CENTRAL_USERNAME
22
22
server-password : MAVEN_CENTRAL_TOKEN
Original file line number Diff line number Diff line change @@ -81,15 +81,12 @@ vite.config.ts
81
81
vite.generated.ts
82
82
/* /frontend /generated /
83
83
/* /frontend /index.html
84
+ /* /src /main /dev-bundle /
84
85
85
86
# custom
86
87
.flattened-pom.xml
87
88
.tern-project
88
89
89
- # Ignore Testcontainer generic folders
90
- PutObjectStoreDirHere /
91
- ObjectStore /
92
-
93
90
# == IntelliJ ==
94
91
* .iml
95
92
* .ipr
Original file line number Diff line number Diff line change
1
+ ## 3.0.0
2
+ * Adds support for Vaadin 24+, drops support for Vaadin 23<br />
3
+ <i >If you are still using Vaadin 23, use the `` 2.x `` versions.</i >
4
+ * Requires Java 17+
5
+
1
6
## 2.0.4
2
7
* Added method `` centerAndZoom `` in `` LMap ``
3
8
* Fixed a problem where an invalid `` iconSize `` was transferred to leaflet which caused a client side exception (#199 )
12
17
* Updated dependencies
13
18
14
19
## 2.0.1
15
-
16
20
* Updated dependencies
17
21
* Vaadin 23.2
18
22
19
23
## 2.0.0
20
-
21
24
* Update to Vaadin 23
22
25
* Removed deprecated polymer-connector - replaced by `` executeJs ``
23
26
* Fixed a problem where the map was not rendered/aligned correctly
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ We encourage you to read the [contribution instructions by GitHub](https://guide
20
20
### Software Requirements
21
21
You should have the following things installed:
22
22
* Git
23
- * Java 11 or 17 - should be as unmodified as possible (Recommended: [ Eclipse Adoptium] ( https://adoptium.net/temurin/releases/ ) )
23
+ * Java 17 - should be as unmodified as possible (Recommended: [ Eclipse Adoptium] ( https://adoptium.net/temurin/releases/ ) )
24
24
* Maven
25
25
26
26
### Recommended setup
Original file line number Diff line number Diff line change 186
186
same "printed page" as the copyright notice for easier
187
187
identification within third-party archives.
188
188
189
- Copyright 2020 XDEV Software
189
+ Copyright 2023 XDEV Software
190
190
191
191
Licensed under the Apache License, Version 2.0 (the "License");
192
192
you may not use this file except in compliance with the License.
You can’t perform that action at this time.
0 commit comments