Skip to content

Commit f538f8a

Browse files
committed
feat: add ui-tests to platform
1 parent 7213fad commit f538f8a

File tree

4 files changed

+40
-1
lines changed

4 files changed

+40
-1
lines changed

scripts/generator/templates/template-vaadin-spring-bom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,18 @@
168168
<groupId>com.vaadin</groupId>
169169
<artifactId>copilot</artifactId>
170170
<version>${copilot.version}</version>
171+
<exclusions>
172+
<exclusion>
173+
<groupId>com.vaadin</groupId>
174+
<artifactId>ui-tests</artifactId>
175+
</exclusion>
176+
</exclusions>
177+
</dependency>
178+
<dependency>
179+
<groupId>com.vaadin</groupId>
180+
<artifactId>ui-tests</artifactId>
181+
<version>${ui.tests.version}</version>
171182
</dependency>
172-
173183
<!-- Free Components -->
174184
<dependency>
175185
<groupId>com.vaadin</groupId>

vaadin-dev/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@
5353
<groupId>com.vaadin</groupId>
5454
<artifactId>copilot</artifactId>
5555
</dependency>
56+
<dependency>
57+
<groupId>com.vaadin</groupId>
58+
<artifactId>ui-tests</artifactId>
59+
</dependency>
5660

5761
</dependencies>
5862
<build>

vaadin/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,28 @@
7171
<exclude>org.slf4j:slf4j-api</exclude>
7272
<!-- commons-lang3 in grid comes with a newer version until other commons from flow have the same -->
7373
<exclude>org.apache.commons:commons-lang3</exclude>
74+
<!-- exclude
75+
[ERROR] +-io.projectreactor:reactor-core
76+
[ERROR] +-com.fasterxml.jackson.core:jackson-core
77+
[ERROR] +-com.fasterxml.jackson.core:jackson-databind
78+
[ERROR] +-io.projectreactor.netty:reactor-netty-core
79+
[ERROR] +-io.projectreactor:reactor-core
80+
[ERROR] +-org.jsoup:jsoup
81+
[ERROR] +-com.fasterxml.jackson.core:jackson-core
82+
[ERROR] +-com.fasterxml.jackson.core:jackson-databind
83+
[ERROR] +-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
84+
[ERROR] +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310
85+
[ERROR] +-dev.langchain4j:langchain4j
86+
[ERROR] +-io.projectreactor.netty:reactor-netty
87+
[ERROR] +-io.projectreactor:reactor-core
88+
[ERROR] +-org.jsoup:jsoup
89+
[ERROR] +-org.springframework:spring-webflux
90+
-->
91+
<exclude>com.fasterxml.jackson.core:jackson-core</exclude>
92+
<exclude>com.fasterxml.jackson.core:jackson-databind</exclude>
93+
<exclude>com.fasterxml.jackson.datatype:jackson-datatype-jsr310</exclude>
94+
<exclude>io.projectreactor:reactor-core</exclude>
95+
<exclude>org.jsoup:jsoup</exclude>
7496
</excludes>
7597
</dependencyConvergence>
7698
<requireUpperBoundDeps>

versions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,9 @@
400400
},
401401
"vaadin-collaboration-engine": {
402402
"javaVersion": "6.3.0.alpha2"
403+
},
404+
"ui-tests": {
405+
"javaVersion": "0.3.0.beta14"
403406
}
404407
},
405408
"platform": "{{version}}",

0 commit comments

Comments
 (0)