Skip to content

Commit

Permalink
Replace stack.version with project.version
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-brm committed Sep 19, 2024
1 parent f1aadf5 commit 0f8bdf3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,14 @@
<junit.version>5.11.0</junit.version>
<scala.version>3.5.1</scala.version>
<slf4j.version>2.0.16</slf4j.version>
<stack.version>${project.version}</stack.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>${stack.version}</version>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
8 changes: 4 additions & 4 deletions vertx-lang-scala-itests/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.vertx</groupId>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-scala_3</artifactId>
<version>${stack.version}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
Expand Down Expand Up @@ -61,4 +61,4 @@
</plugins>
</build>

</project>
</project>
6 changes: 3 additions & 3 deletions vertx-lang-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-auth-htpasswd</artifactId>
<version>${stack.version}</version>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<dependency>
Expand Down Expand Up @@ -561,12 +561,12 @@
<annotationProcessorPath>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-scala-codegen</artifactId>
<version>${stack.version}</version>
<version>${project.version}</version>
</annotationProcessorPath>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-scala-codegen</artifactId>
<version>${stack.version}</version>
<version>${project.version}</version>
</dependency>
</annotationProcessorPaths>
</configuration>
Expand Down

0 comments on commit 0f8bdf3

Please sign in to comment.