Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
92b65b0
fix: Add AutoCloseable to clean up the context when an exception occurs
Rafaellinos Feb 15, 2026
ff61837
Merge branch 'feature/prepare-release' into fix/clean-context-on-exce…
Rafaellinos Feb 15, 2026
1b7224a
Merge pull request #121 from Rafaellinos/fix/clean-context-on-exception
mvallim Feb 15, 2026
21d7f10
chore: review
mvallim Feb 15, 2026
7f7511d
chore: review
mvallim Feb 15, 2026
858b4a5
chore: review
mvallim Feb 15, 2026
bccc8e3
chore: review
mvallim Feb 15, 2026
baf1572
Merge pull request #122 from mvallim/feature/prepare-release
mvallim Feb 15, 2026
75bf461
chore: update documentation
mvallim Feb 15, 2026
5c29633
Merge branch 'develop' of git@github.com:mvallim/java-fluent-validato…
mvallim Feb 15, 2026
e18c2b5
chore: cleanup unusable dependencies
mvallim Feb 15, 2026
6263a0d
Merge pull request #124 from mvallim/feature/update-workflow
mvallim Feb 15, 2026
cad79d4
chore(deps-dev): bump org.assertj:assertj-core from 3.24.2 to 3.27.7
dependabot[bot] Feb 15, 2026
5d2564f
Bump assertj-core from 3.11.1 to 3.24.2
dependabot[bot] Feb 15, 2026
8eb456e
chore(deps): bump org.apache.maven.plugins:maven-resources-plugin
dependabot[bot] Feb 15, 2026
f4e98a0
Merge pull request #103 from mvallim/dependabot/maven/org.assertj-ass…
mvallim Feb 15, 2026
a106212
Merge pull request #125 from mvallim/dependabot/maven/org.assertj-ass…
mvallim Feb 15, 2026
e99a288
chore(deps): bump org.apache.maven.plugins:maven-javadoc-plugin
dependabot[bot] Feb 15, 2026
2a74de1
Merge pull request #129 from mvallim/dependabot/maven/org.apache.mave…
mvallim Feb 15, 2026
9c58530
Merge pull request #131 from mvallim/dependabot/maven/org.apache.mave…
mvallim Feb 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 3 additions & 47 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<mockito.version>4.11.0</mockito.version>
<junit.jupiter.version>5.10.2</junit.jupiter.version>
<awaitility.version>4.2.2</awaitility.version>
<assertj-core.version>3.24.2</assertj-core.version>
<assertj-core.version>3.27.7</assertj-core.version>
<slf4j-api.version>2.0.6</slf4j-api.version>
<hamcrest.version>3.0</hamcrest.version>

Expand All @@ -34,10 +34,10 @@
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
<maven-install-plugin.version>3.1.0</maven-install-plugin.version>
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
<maven-resources-plugin.version>3.4.0</maven-resources-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<sonar-maven-plugin.version>4.0.0.4121</sonar-maven-plugin.version>
Expand Down Expand Up @@ -246,46 +246,10 @@
<showWarnings>true</showWarnings>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectj-maven-plugin.version}</version>
<configuration>
<Xlint>ignore</Xlint>
<complianceLevel>${java.version}</complianceLevel>
<showWeaveInfo>false</showWeaveInfo>
<verbose>false</verbose>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>

<!-- Scope Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -373,8 +337,6 @@
</activation>
<properties>
<java.version>8</java.version>
<aspectj.version>1.9.7</aspectj.version>
<aspectj-maven-plugin.version>1.14.0</aspectj-maven-plugin.version>
</properties>
</profile>

Expand All @@ -385,8 +347,6 @@
</activation>
<properties>
<java.version>11</java.version>
<aspectj.version>1.9.7</aspectj.version>
<aspectj-maven-plugin.version>1.14.0</aspectj-maven-plugin.version>
</properties>
</profile>

Expand All @@ -397,8 +357,6 @@
</activation>
<properties>
<java.version>17</java.version>
<aspectj.version>1.9.25.1</aspectj.version>
<aspectj-maven-plugin.version>1.16.0</aspectj-maven-plugin.version>
</properties>
</profile>

Expand All @@ -409,8 +367,6 @@
</activation>
<properties>
<java.version>21</java.version>
<aspectj.version>1.9.25.1</aspectj.version>
<aspectj-maven-plugin.version>1.16.0</aspectj-maven-plugin.version>
</properties>
</profile>

Expand Down
Loading
Loading