Skip to content

Commit d517e11

Browse files
authored
Make Vuu use custom properties to stop SpringBoot downgrading them. (#2315)
1 parent c44ccc1 commit d517e11

21 files changed

Lines changed: 101 additions & 101 deletions

File tree

example/basket/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.scala-lang</groupId>
3535
<artifactId>scala3-library_3</artifactId>
36-
<version>${scala.version}</version>
36+
<version>${vuu.scala.version}</version>
3737
</dependency>
3838

3939
<dependency>
@@ -48,14 +48,14 @@
4848
<dependency>
4949
<groupId>ch.qos.logback</groupId>
5050
<artifactId>logback-classic</artifactId>
51-
<version>${logback.version}</version>
51+
<version>${vuu.logback.version}</version>
5252
<scope>test</scope>
5353
</dependency>
5454

5555
<dependency>
5656
<groupId>org.scalatest</groupId>
5757
<artifactId>scalatest_3</artifactId>
58-
<version>${scalatest.version}</version>
58+
<version>${vuu.scalatest.version}</version>
5959
<scope>test</scope>
6060
<exclusions>
6161
<exclusion>

example/editable/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
<dependency>
2222
<groupId>org.scala-lang</groupId>
2323
<artifactId>scala3-library_3</artifactId>
24-
<version>${scala.version}</version>
24+
<version>${vuu.scala.version}</version>
2525
</dependency>
2626

2727
<dependency>
2828
<groupId>ch.qos.logback</groupId>
2929
<artifactId>logback-classic</artifactId>
30-
<version>${logback.version}</version>
30+
<version>${vuu.logback.version}</version>
3131
<scope>test</scope>
3232
</dependency>
3333

@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>org.scalatest</groupId>
4545
<artifactId>scalatest_3</artifactId>
46-
<version>${scalatest.version}</version>
46+
<version>${vuu.scalatest.version}</version>
4747
<scope>test</scope>
4848
<exclusions>
4949
<exclusion>

example/http2-server/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,39 +21,39 @@
2121
<dependency>
2222
<groupId>org.scala-lang</groupId>
2323
<artifactId>scala3-library_3</artifactId>
24-
<version>${scala.version}</version>
24+
<version>${vuu.scala.version}</version>
2525
</dependency>
2626

2727
<dependency>
2828
<groupId>io.vertx</groupId>
2929
<artifactId>vertx-core</artifactId>
30-
<version>${vertx.version}</version>
30+
<version>${vuu.vertx.version}</version>
3131
</dependency>
3232

3333
<dependency>
3434
<groupId>io.vertx</groupId>
3535
<artifactId>vertx-web</artifactId>
36-
<version>${vertx.version}</version>
36+
<version>${vuu.vertx.version}</version>
3737
</dependency>
3838

3939
<dependency>
4040
<groupId>io.vertx</groupId>
4141
<artifactId>vertx-web-client</artifactId>
42-
<version>${vertx.version}</version>
42+
<version>${vuu.vertx.version}</version>
4343
<scope>test</scope>
4444
</dependency>
4545

4646
<dependency>
4747
<groupId>ch.qos.logback</groupId>
4848
<artifactId>logback-classic</artifactId>
49-
<version>${logback.version}</version>
49+
<version>${vuu.logback.version}</version>
5050
<scope>test</scope>
5151
</dependency>
5252

5353
<dependency>
5454
<groupId>org.scalatest</groupId>
5555
<artifactId>scalatest_3</artifactId>
56-
<version>${scalatest.version}</version>
56+
<version>${vuu.scalatest.version}</version>
5757
<scope>test</scope>
5858
<exclusions>
5959
<exclusion>
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>org.scalamock</groupId>
6868
<artifactId>scalamock_3</artifactId>
69-
<version>${scalamock.version}</version>
69+
<version>${vuu.scalamock.version}</version>
7070
<scope>test</scope>
7171
<exclusions>
7272
<exclusion>

example/main-clickhouse/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,37 +42,37 @@
4242
<dependency>
4343
<groupId>org.scala-lang</groupId>
4444
<artifactId>scala3-library_3</artifactId>
45-
<version>${scala.version}</version>
45+
<version>${vuu.scala.version}</version>
4646
</dependency>
4747

4848
<dependency>
4949
<groupId>com.typesafe</groupId>
5050
<artifactId>config</artifactId>
51-
<version>${typesafe.conf.version}</version>
51+
<version>${vuu.typesafe.conf.version}</version>
5252
</dependency>
5353

5454
<dependency>
5555
<groupId>ch.qos.logback</groupId>
5656
<artifactId>logback-classic</artifactId>
57-
<version>${logback.version}</version>
57+
<version>${vuu.logback.version}</version>
5858
</dependency>
5959

6060
<dependency>
6161
<groupId>org.testcontainers</groupId>
6262
<artifactId>testcontainers</artifactId>
63-
<version>${testcontainers.version}</version>
63+
<version>${vuu.testcontainers.version}</version>
6464
</dependency>
6565

6666
<dependency>
6767
<groupId>com.dimafeng</groupId>
6868
<artifactId>testcontainers-scala-scalatest_3</artifactId>
69-
<version>${testcontainers.scalatest.version}</version>
69+
<version>${vuu.testcontainers.scalatest.version}</version>
7070
</dependency>
7171

7272
<dependency>
7373
<groupId>org.scalatest</groupId>
7474
<artifactId>scalatest_3</artifactId>
75-
<version>${scalatest.version}</version>
75+
<version>${vuu.scalatest.version}</version>
7676
<scope>test</scope>
7777
<exclusions>
7878
<exclusion>

example/main-java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>ch.qos.logback</groupId>
4747
<artifactId>logback-classic</artifactId>
48-
<version>${logback.version}</version>
48+
<version>${vuu.logback.version}</version>
4949
</dependency>
5050

5151
<dependency>
@@ -60,14 +60,14 @@
6060
<dependency>
6161
<groupId>org.junit.jupiter</groupId>
6262
<artifactId>junit-jupiter</artifactId>
63-
<version>${junit.jupiter.version}</version>
63+
<version>${vuu.junit.jupiter.version}</version>
6464
<scope>test</scope>
6565
</dependency>
6666

6767
<dependency>
6868
<groupId>org.scalatest</groupId>
6969
<artifactId>scalatest_3</artifactId>
70-
<version>${scalatest.version}</version>
70+
<version>${vuu.scalatest.version}</version>
7171
<scope>test</scope>
7272
<exclusions>
7373
<exclusion>

example/main/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@
7070
<dependency>
7171
<groupId>org.scala-lang</groupId>
7272
<artifactId>scala3-library_3</artifactId>
73-
<version>${scala.version}</version>
73+
<version>${vuu.scala.version}</version>
7474
</dependency>
7575

7676
<dependency>
7777
<groupId>ch.qos.logback</groupId>
7878
<artifactId>logback-classic</artifactId>
79-
<version>${logback.version}</version>
79+
<version>${vuu.logback.version}</version>
8080
</dependency>
8181

8282
<dependency>
8383
<groupId>org.scalatest</groupId>
8484
<artifactId>scalatest_3</artifactId>
85-
<version>${scalatest.version}</version>
85+
<version>${vuu.scalatest.version}</version>
8686
<scope>test</scope>
8787
<exclusions>
8888
<exclusion>

example/notifications/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@
2929
<dependency>
3030
<groupId>org.scala-lang</groupId>
3131
<artifactId>scala3-library_3</artifactId>
32-
<version>${scala.version}</version>
32+
<version>${vuu.scala.version}</version>
3333
</dependency>
3434

3535
<dependency>
3636
<groupId>ch.qos.logback</groupId>
3737
<artifactId>logback-classic</artifactId>
38-
<version>${logback.version}</version>
38+
<version>${vuu.logback.version}</version>
3939
<scope>test</scope>
4040
</dependency>
4141

4242
<dependency>
4343
<groupId>org.scalatest</groupId>
4444
<artifactId>scalatest_3</artifactId>
45-
<version>${scalatest.version}</version>
45+
<version>${vuu.scalatest.version}</version>
4646
<scope>test</scope>
4747
<exclusions>
4848
<exclusion>

example/order/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
<dependency>
3434
<groupId>org.scala-lang</groupId>
3535
<artifactId>scala3-library_3</artifactId>
36-
<version>${scala.version}</version>
36+
<version>${vuu.scala.version}</version>
3737
</dependency>
3838

3939
<dependency>
4040
<groupId>ch.qos.logback</groupId>
4141
<artifactId>logback-classic</artifactId>
42-
<version>${logback.version}</version>
42+
<version>${vuu.logback.version}</version>
4343
<scope>test</scope>
4444
</dependency>
4545

@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>org.scalatest</groupId>
5757
<artifactId>scalatest_3</artifactId>
58-
<version>${scalatest.version}</version>
58+
<version>${vuu.scalatest.version}</version>
5959
<scope>test</scope>
6060
<exclusions>
6161
<exclusion>

example/permission/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
<dependency>
2828
<groupId>org.scala-lang</groupId>
2929
<artifactId>scala3-library_3</artifactId>
30-
<version>${scala.version}</version>
30+
<version>${vuu.scala.version}</version>
3131
</dependency>
3232

3333
<dependency>
3434
<groupId>ch.qos.logback</groupId>
3535
<artifactId>logback-classic</artifactId>
36-
<version>${logback.version}</version>
36+
<version>${vuu.logback.version}</version>
3737
<scope>test</scope>
3838
</dependency>
3939

@@ -49,14 +49,14 @@
4949
<dependency>
5050
<groupId>io.vertx</groupId>
5151
<artifactId>vertx-web-client</artifactId>
52-
<version>${vertx.version}</version>
52+
<version>${vuu.vertx.version}</version>
5353
<scope>test</scope>
5454
</dependency>
5555

5656
<dependency>
5757
<groupId>org.scalatest</groupId>
5858
<artifactId>scalatest_3</artifactId>
59-
<version>${scalatest.version}</version>
59+
<version>${vuu.scalatest.version}</version>
6060
<scope>test</scope>
6161
<exclusions>
6262
<exclusion>

example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<name>${project.artifactId}</name>
1414

1515
<properties>
16-
<sttp.client4.version>4.0.26</sttp.client4.version>
17-
<typesafe.conf.version>1.4.9</typesafe.conf.version>
18-
<vertx.version>5.1.6</vertx.version>
16+
<vuu.sttp.client4.version>4.0.26</vuu.sttp.client4.version>
17+
<vuu.typesafe.conf.version>1.4.9</vuu.typesafe.conf.version>
18+
<vuu.vertx.version>5.1.6</vuu.vertx.version>
1919
</properties>
2020

2121
<modules>

0 commit comments

Comments
 (0)