Skip to content

Commit

Permalink
[Build] Try if Renovate can detect non-property versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje committed Jan 15, 2023
1 parent ad47dd5 commit 4aa2595
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 31 deletions.
13 changes: 0 additions & 13 deletions .mvn/settings.xml

This file was deleted.

6 changes: 2 additions & 4 deletions examples/calculator-java-cli/pom.xml
Expand Up @@ -13,8 +13,6 @@

<properties>
<project.Automatic-Module-Name>io.cucumber.examples.calculator</project.Automatic-Module-Name>
<jackson.version>2.13.4.20221012</jackson.version>
<hamcrest.version>2.2</hamcrest.version>
</properties>

<dependencyManagement>
Expand All @@ -29,7 +27,7 @@
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<version>2.13.4.20221012</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -45,7 +43,7 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
3 changes: 1 addition & 2 deletions examples/calculator-java-junit4/pom.xml
Expand Up @@ -13,7 +13,6 @@

<properties>
<project.Automatic-Module-Name>io.cucumber.examples.calculator</project.Automatic-Module-Name>
<jackson.version>2.13.4.20221012</jackson.version>
</properties>

<dependencyManagement>
Expand All @@ -28,7 +27,7 @@
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<version>2.13.4.20221012</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
6 changes: 2 additions & 4 deletions examples/calculator-java-junit5/pom.xml
Expand Up @@ -13,8 +13,6 @@

<properties>
<project.Automatic-Module-Name>io.cucumber.calculator</project.Automatic-Module-Name>
<jackson.version>2.13.4.20221012</jackson.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
</properties>

<dependencyManagement>
Expand All @@ -29,14 +27,14 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<version>5.8.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<version>2.13.4.20221012</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
1 change: 0 additions & 1 deletion examples/calculator-java-testng/pom.xml
Expand Up @@ -15,7 +15,6 @@
<project.Automatic-Module-Name>io.cucumber.examples.calculator</project.Automatic-Module-Name>
</properties>


<dependencyManagement>
<dependencies>
<dependency>
Expand Down
3 changes: 1 addition & 2 deletions examples/calculator-java8-cli/pom.xml
Expand Up @@ -12,7 +12,6 @@
<name>Examples: Calculator - Lambda - CLI</name>

<properties>
<hamcrest.version>2.2</hamcrest.version>
<project.Automatic-Module-Name>io.cucumber.examples.calculator</project.Automatic-Module-Name>
</properties>

Expand All @@ -37,7 +36,7 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
8 changes: 3 additions & 5 deletions examples/spring-java-junit5/pom.xml
Expand Up @@ -12,23 +12,21 @@

<properties>
<project.Automatic-Module-Name>io.cucumber.examples.spring.application</project.Automatic-Module-Name>
<spring-boot.version>3.0.1</spring-boot.version>
<junit-jupiter.version>5.9.1</junit-jupiter.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<version>5.9.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<version>3.0.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -120,7 +118,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 4aa2595

Please sign in to comment.