Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Depend on all WebJars explicitly to avoid version ranges in resulting…
Browse files Browse the repository at this point in the history
… jars (#34)
  • Loading branch information
SomeoneToIgnore authored and Denis committed Jul 16, 2018
1 parent db2fb71 commit efad96d
Showing 1 changed file with 61 additions and 8 deletions.
69 changes: 61 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,62 @@
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-list-box</artifactId>
<version>1.1.0-alpha3</version>
<exclusions>
<exclusion>
<groupId>org.webjars.bowergithub.polymerelements</groupId>
<artifactId>iron-flex-layout</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-lumo-styles</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-material-styles</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.polymerelements</groupId>
<artifactId>iron-icon</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.polymerelements</groupId>
<artifactId>iron-meta</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.polymerelements</groupId>
<artifactId>iron-iconset-svg</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-element-mixin</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-usage-statistics</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-development-mode-detector</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-themable-mixin</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-list-mixin</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-item</artifactId>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.polymerelements</groupId>
<artifactId>iron-flex-layout</artifactId>
<version>2.0.3</version>
</dependency>

<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-data</artifactId>
<version>${flow.version}</version>
<scope>provided</scope>
</dependency>

<!-- Dependencies for the demo -->
Expand All @@ -70,4 +109,18 @@
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>runTests</id>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-data</artifactId>
<version>${flow.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

0 comments on commit efad96d

Please sign in to comment.