Skip to content

Commit

Permalink
Merge pull request #18 from vaadin-component-factory/feature/v23
Browse files Browse the repository at this point in the history
Bump the version of the webcomponent and Vaadin (23)
  • Loading branch information
jcgueriaud1 authored Nov 3, 2022
2 parents 4325dc1 + 7ce0928 commit b201c4b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 22 deletions.
14 changes: 6 additions & 8 deletions autocomplete-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@

<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
<vaadin.version>14.6.3</vaadin.version>
<vaadin.version>23.2.6</vaadin.version>
<flow.version>2.6.3</flow.version>
<testbench.version>6.0.1</testbench.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
Expand All @@ -46,7 +45,7 @@
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-component-demo-helpers</artifactId>
<version>${flow.version}</version>
<version>9.0.21</version>
</dependency>
<dependency>
<groupId>com.vaadin.componentfactory</groupId>
Expand Down Expand Up @@ -78,7 +77,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.11.v20180605</version>
<version>9.4.46.v20220331</version>
<configuration>
<scanIntervalSeconds>1</scanIntervalSeconds>
</configuration>
Expand All @@ -104,7 +103,6 @@
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-server-production-mode</artifactId>
<version>${flow.version}</version>
</dependency>
</dependencies>

Expand All @@ -118,7 +116,7 @@
<execution>
<goals>
<goal>prepare-frontend</goal>
<goal>build-frontend</goal>
<goal>build-frontend</goal>
</goals>
</execution>
</executions>
Expand Down
18 changes: 9 additions & 9 deletions autocomplete/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@


<properties>
<jetty.plugin.version>9.4.11.v20180605</jetty.plugin.version>
<vaadin.version>14.6.3</vaadin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<jetty.plugin.version>9.4.46.v20220331</jetty.plugin.version>
<vaadin.version>23.2.6</vaadin.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
Expand Down Expand Up @@ -51,7 +51,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadoc</id>
Expand All @@ -64,7 +64,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -78,7 +78,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<version>3.1.2</version>
<configuration>
<archive>
<index>true</index>
Expand All @@ -103,7 +103,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<version>3.1.0</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
Expand Down Expand Up @@ -136,7 +136,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* @author Vaadin Ltd
*/
@Tag("vcf-autocomplete")
@NpmPackage(value = "@vaadin-component-factory/vcf-autocomplete", version = "1.2.8")
@NpmPackage(value = "@vaadin-component-factory/vcf-autocomplete", version = "1.2.10")
@JsModule("@vaadin-component-factory/vcf-autocomplete/src/vcf-autocomplete.js")
public class Autocomplete extends
PolymerTemplate<Autocomplete.AutocompleteTemplateModel> implements
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.vaadin.componentfactory</groupId>
<artifactId>autocomplete-root</artifactId>
<packaging>pom</packaging>
<version>2.3.2</version>
<version>23.0.0</version>
<name>Autocomplete Root</name>
<inceptionYear>2018</inceptionYear>
<organization>
Expand All @@ -15,9 +15,9 @@
</organization>

<properties>
<vaadin.version>14.6.3</vaadin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<vaadin.version>23.2.6</vaadin.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
Expand Down

0 comments on commit b201c4b

Please sign in to comment.