Skip to content

Commit 3304b4c

Browse files
committed
Merge remote-tracking branch 'origin/update-from-template' into develop
2 parents 126a1c6 + beaa334 commit 3304b4c

File tree

5 files changed

+11
-20
lines changed

5 files changed

+11
-20
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,7 @@ jobs:
1919
with:
2020
java-version: '11'
2121
distribution: 'temurin'
22-
23-
- name: Cache local Maven repository
24-
uses: actions/cache@v3
25-
with:
26-
path: ~/.m2/repository
27-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28-
restore-keys: |
29-
${{ runner.os }}-maven-
22+
cache: 'maven'
3023

3124
- name: Build with Maven
3225
run: mvn -B clean package -Pproduction

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ webpack.generated.js
7777
webpack.config.js
7878
tsconfig.json
7979
types.d.ts
80+
vite.config.ts
81+
vite.generated.ts
8082
/*/frontend/generated/
8183
/*/frontend/index.html
8284

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
65
<modelVersion>4.0.0</modelVersion>
76

87
<groupId>com.xdev-software</groupId>
98
<artifactId>vaadin-date-range-picker-root</artifactId>
10-
<packaging>pom</packaging>
119
<version>3.0.1-SNAPSHOT</version>
10+
<packaging>pom</packaging>
1211

1312
<organization>
1413
<name>XDEV Software</name>

vaadin-date-range-picker-demo/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
87
<groupId>com.xdev-software</groupId>
98
<artifactId>vaadin-date-range-picker-demo</artifactId>
109
<version>3.0.1-SNAPSHOT</version>
@@ -34,7 +33,7 @@
3433
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3534

3635
<!-- Dependency-Versions -->
37-
<vaadin.version>23.1.4</vaadin.version>
36+
<vaadin.version>23.2.1</vaadin.version>
3837
</properties>
3938

4039

@@ -74,7 +73,7 @@
7473
<plugin>
7574
<groupId>org.eclipse.jetty</groupId>
7675
<artifactId>jetty-maven-plugin</artifactId>
77-
<version>10.0.11</version>
76+
<version>10.0.12</version>
7877
<configuration>
7978
<scan>1</scan>
8079
</configuration>

vaadin-date-range-picker/pom.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
65
<modelVersion>4.0.0</modelVersion>
76

87
<groupId>com.xdev-software</groupId>
98
<artifactId>vaadin-date-range-picker</artifactId>
10-
11-
<packaging>jar</packaging>
129
<version>3.0.1-SNAPSHOT</version>
10+
<packaging>jar</packaging>
1311

1412
<name>DateRangePicker for Vaadin</name>
1513
<description>DateRangePicker for Vaadin</description>
@@ -53,7 +51,7 @@
5351
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5452

5553
<!-- Dependency-Versions -->
56-
<vaadin.version>23.1.4</vaadin.version>
54+
<vaadin.version>23.2.1</vaadin.version>
5755
</properties>
5856

5957
<dependencyManagement>
@@ -160,7 +158,7 @@
160158
<plugin>
161159
<groupId>org.apache.maven.plugins</groupId>
162160
<artifactId>maven-javadoc-plugin</artifactId>
163-
<version>3.4.0</version>
161+
<version>3.4.1</version>
164162
<executions>
165163
<execution>
166164
<id>attach-javadocs</id>
@@ -192,7 +190,7 @@
192190
<plugin>
193191
<groupId>org.apache.maven.plugins</groupId>
194192
<artifactId>maven-jar-plugin</artifactId>
195-
<version>3.2.2</version>
193+
<version>3.3.0</version>
196194
<configuration>
197195
<archive>
198196
<index>true</index>
@@ -285,7 +283,7 @@
285283
<plugin>
286284
<groupId>org.apache.maven.plugins</groupId>
287285
<artifactId>maven-jar-plugin</artifactId>
288-
<version>3.2.2</version>
286+
<version>3.3.0</version>
289287
<configuration>
290288
<!-- VAADIN files that shouldn't be included in add-ons -->
291289
<excludes>

0 commit comments

Comments
 (0)