Skip to content

Commit

Permalink
Merge pull request #35427 from phillip-kruger/dev-ui-importmap-update
Browse files Browse the repository at this point in the history
Switch to io.mvnpm for importmaps
  • Loading branch information
phillip-kruger authored Aug 24, 2023
2 parents 56188a6 + 0fb79be commit 21b1a73
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
10 changes: 8 additions & 2 deletions bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
<pulsar-client.version>3.0.0</pulsar-client.version>
<async-http-client.version>2.12.3</async-http-client.version>
<!-- Dev UI -->
<importmap.version>1.0.8</importmap.version>
<importmap.version>1.0.9</importmap.version>
<vaadin.version>24.1.4</vaadin.version>
<lit.version>2.8.0</lit.version>
<lit-element.version>3.3.3</lit-element.version>
Expand Down Expand Up @@ -3284,7 +3284,7 @@
<!-- Dev UI -->
<!-- To create the import map -->
<dependency>
<groupId>org.mvnpm</groupId>
<groupId>io.mvnpm</groupId>
<artifactId>importmap</artifactId>
<version>${importmap.version}</version>
</dependency>
Expand All @@ -3302,6 +3302,12 @@
<scope>runtime</scope>
</dependency>
<!-- Vaadin Web components -->
<dependency>
<groupId>org.mvnpm.at.vaadin</groupId>
<artifactId>a11y-base</artifactId>
<version>${vaadin.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.mvnpm.at.vaadin</groupId>
<artifactId>app-layout</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion extensions/vertx-http/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<artifactId>quarkus-vertx-http-dev-ui-resources</artifactId>
</dependency>
<dependency>
<groupId>org.mvnpm</groupId>
<groupId>io.mvnpm</groupId>
<artifactId>importmap</artifactId>
</dependency>
<!-- Used for the dev ui. Note that there is no corresponding runtime dependency -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
import org.eclipse.microprofile.config.Config;
import org.eclipse.microprofile.config.ConfigProvider;
import org.jboss.logging.Logger;
import org.mvnpm.importmap.Aggregator;
import org.mvnpm.importmap.Location;

import com.fasterxml.jackson.core.JsonProcessingException;

import io.mvnpm.importmap.Aggregator;
import io.mvnpm.importmap.Location;
import io.quarkus.builder.Version;
import io.quarkus.deployment.IsDevelopment;
import io.quarkus.deployment.annotations.BuildProducer;
Expand Down
5 changes: 5 additions & 0 deletions extensions/vertx-http/dev-ui-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
<scope>runtime</scope>
</dependency>
<!-- Vaadin Web components -->
<dependency>
<groupId>org.mvnpm.at.vaadin</groupId>
<artifactId>a11y-base</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.mvnpm.at.vaadin</groupId>
<artifactId>app-layout</artifactId>
Expand Down

0 comments on commit 21b1a73

Please sign in to comment.