Skip to content

Commit

Permalink
XCOMMONS-2108: Upgrade to Bean Validation 3.0.2
Browse files Browse the repository at this point in the history
XCOMMONS-2475: Use Expressly instead of Apache EL
  • Loading branch information
tmortagne committed Nov 21, 2024
1 parent c69c5ce commit 6d5337b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions xwiki-rendering-macros/xwiki-rendering-macro-toc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jasper</groupId>
<artifactId>apache-el</artifactId>
<scope>runtime</scope>
<groupId>org.glassfish.expressly</groupId>
<artifactId>expressly</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
package org.xwiki.rendering.macro.toc;

import javax.validation.constraints.Min;
import jakarta.validation.constraints.Min;

import org.xwiki.properties.annotation.PropertyAdvanced;
import org.xwiki.properties.annotation.PropertyDescription;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Exception used when the macro parameter is two high.
*
* @version $Id$
* @deprecated use {@link javax.validation.constraints.Max} instead
* @deprecated use {@link jakarta.validation.constraints.Max} instead
*/
@Deprecated
public class ParameterValueTooHighException extends MacroParameterException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Exception used when the macro parameter is two low.
*
* @version $Id$
* @deprecated use {@link javax.validation.constraints.Min} instead
* @deprecated use {@link jakarta.validation.constraints.Min} instead
*/
@Deprecated
public class ParameterValueTooLowException extends MacroParameterException
Expand Down

0 comments on commit 6d5337b

Please sign in to comment.