Skip to content

Commit

Permalink
bumping dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mjureczko committed Jan 19, 2024
1 parent 33495c0 commit 32fb01f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ocadotechnology.gembus</groupId>
<artifactId>test-arranger</artifactId>
<version>1.5.10</version>
<version>1.6.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>test-arranger</name>
<description>A tool for arranging test data with pseudo-random values.</description>
Expand Down Expand Up @@ -59,8 +59,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
<kotlin.version>1.7.20</kotlin.version>
<easy-random.version>6.1.8</easy-random.version>
<kotlin.version>1.9.22</kotlin.version>
<easy-random.version>7.0.0</easy-random.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -100,12 +100,12 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
<version>2.2</version>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>4.8.149</version>
<version>4.8.165</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
Expand All @@ -130,7 +130,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.23.1</version>
<version>3.25.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -140,7 +140,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.0</version>
<version>5.10.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -195,7 +195,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.12.1</version>
<executions>
<!-- Replacing default-compile and default-testCompile as it is treated specially by maven -->
<execution>
Expand Down Expand Up @@ -229,13 +229,13 @@

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.2.5</version>
</plugin>

<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.1</version>
<version>4.3</version>
<configuration>
<licenseSets>
<licenseSet>
Expand Down Expand Up @@ -296,7 +296,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -310,7 +310,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
*/
package com.ocadotechnology.gembus.bugfix;

import javax.validation.Valid;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.Valid;

import java.util.List;
import java.util.Set;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package com.ocadotechnology.gembus.bugfix;

import javax.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotBlank;

public record Description(String locale, @NotBlank String value) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
*/
package com.ocadotechnology.gembus.test;

import jakarta.validation.constraints.Positive;
import org.junit.jupiter.api.Test;

import javax.validation.constraints.Positive;
import java.math.BigDecimal;
import java.math.BigInteger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void should_limitTheNestingLevel_when_inDirectlyRecursiveStructures() {

//then
assertThat(actual.value()).isNotNull();
assertThat(actual.child().child().child().child().child()).isEqualTo(new DirectlyNested(null,null));
assertThat(actual.child().child().child().child()).isEqualTo(new DirectlyNested(null,null));
assertThat(actual.child().child().value()).isNotNull();
}

Expand Down

0 comments on commit 32fb01f

Please sign in to comment.