Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jetty.version>9.4.36.v20210114</jetty.version>
<flowingcode.commons.demo.version>3.10.0</flowingcode.commons.demo.version>
</properties>
<organization>
<name>Flowing Code</name>
Expand Down Expand Up @@ -133,7 +134,7 @@
<dependency>
<groupId>com.flowingcode.vaadin.addons.demo</groupId>
<artifactId>commons-demo</artifactId>
<version>3.5.0</version>
<version>${flowingcode.commons.demo.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -351,6 +352,7 @@
<exclude>**/integration/*</exclude>
<exclude>**/DemoView.class</exclude>
<exclude>**/DemoLayout.class</exclude>
<exclude>**/dynamic-theme.properties</exclude>
</excludes>
</configuration>
</execution>
Expand All @@ -376,6 +378,7 @@
<maven.compiler.target>17</maven.compiler.target>
<vaadin.version>24.2.6</vaadin.version>
<jetty.version>11.0.12</jetty.version>
<flowingcode.commons.demo.version>5.2.0</flowingcode.commons.demo.version>
</properties>
<repositories>
<repository>
Expand Down Expand Up @@ -405,16 +408,16 @@
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<vaadin.version>25.0.0-beta2</vaadin.version>
<vaadin.version>25.1.0</vaadin.version>
<jetty.version>11.0.26</jetty.version>
</properties>
<flowingcode.commons.demo.version>5.2.0</flowingcode.commons.demo.version>
</properties>
<dependencies>
<dependency>
<groupId>com.flowingcode.vaadin.addons.demo</groupId>
<artifactId>commons-demo</artifactId>
<version>5.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-dev</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</profile>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* #%L
* Simple Timer Addon
* %%
* Copyright (C) 2019 - 2020 Flowing Code
* Copyright (C) 2019 - 2026 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -28,6 +28,7 @@
import com.vaadin.flow.component.Synchronize;
import com.vaadin.flow.component.Tag;
import com.vaadin.flow.component.dependency.JsModule;
import com.vaadin.flow.component.dependency.NpmPackage;
import com.vaadin.flow.dom.PropertyChangeListener;
import com.vaadin.flow.shared.Registration;
import java.io.Serializable;
Expand All @@ -37,6 +38,7 @@

/** @author Leonardo Scardanzan / Flowing Code */
@Tag("simple-timer")
@NpmPackage(value = "@polymer/polymer", version = "3.5.2")
@JsModule("./simple-timer/simple-timer.js")
public class SimpleTimer extends Component implements HasSize, HasStyle, Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* #%L
* Simple Timer Addon
* %%
* Copyright (C) 2019 Flowing Code
* Copyright (C) 2019 - 2026 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* #%L
* Simple Timer Addon
* %%
* Copyright (C) 2019 - 2020 Flowing Code
* Copyright (C) 2019 - 2026 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* #%L
* Simple Timer Addon
* %%
* Copyright (C) 2019 - 2020 Flowing Code
* Copyright (C) 2019 - 2026 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* #%L
* Simple Timer Addon
* %%
* Copyright (C) 2019 - 2020 Flowing Code
* Copyright (C) 2019 - 2026 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* #%L
* Simple Timer Addon
* %%
* Copyright (C) 2019 - 2020 Flowing Code
* Copyright (C) 2019 - 2026 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
1 change: 1 addition & 0 deletions src/test/resources/META-INF/dynamic-theme.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme=LUMO
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#%L
Simple Timer Addon
%%
Copyright (C) 2019 - 2020 Flowing Code
Copyright (C) 2019 - 2026 Flowing Code
%%
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading