Skip to content

Commit 8478039

Browse files
committed
Update hibernate validator to latest version
1 parent 9c79c26 commit 8478039

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<shiro.version>1.4.0</shiro.version>
3535
<undertow.version>2.0.17.Final</undertow.version>
3636
<jersey2.version>2.30</jersey2.version>
37-
<hibernate-validator.version>5.4.3.Final</hibernate-validator.version>
37+
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version>
3838
<aopalliance.version>1.0</aopalliance.version>
3939
<glassfish-javax.el.version>3.0.0</glassfish-javax.el.version>
4040
<arquillian.version>1.4.0.Final</arquillian.version>

specs/src/main/java/org/seedstack/seed/LifecycleListener.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
/**
1212
* Any class implementing this interface will be registered as an application lifecycle listener. As the application
1313
* starts and stops, these callbacks will be invoked to allow for executing startup and/or shutdown code.
14-
* LifecycleListeners are singletons and injected.
14+
* <p>LifecycleListeners are singletons, meaning that the same instance will be used for all method invocations. You can
15+
* use injection and interception at all phases.</p>
1516
*/
1617
public interface LifecycleListener {
1718
/**
18-
* This method is called by SeedStack just after the application has initialized but is not started yet.
19+
* This method is called by SeedStack just before the application is starting.
1920
*/
2021
default void starting() {
2122
// no-op
@@ -29,7 +30,7 @@ default void started() {
2930
}
3031

3132
/**
32-
* This method is called by SeedStack just before the application is shut down.
33+
* This method is called by SeedStack just before the application is shutting down.
3334
*/
3435
default void stopping() {
3536
// no-op

0 commit comments

Comments
 (0)