HHH-17047 - Follow up tasks for Gradle 8.2 upgrade

- toolchains
- lazy Task creation
- documentation (documentation/ and release/) tasks
This commit is contained in:
Steve Ebersole 2023-08-14 07:54:58 -05:00 committed by Christian Beikov
parent 7292e1d001
commit 740e02fb43
1 changed files with 11 additions and 0 deletions

View File

@ -6,6 +6,14 @@
*/
package org.hibernate.service;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Marker annotation identifying integration points which Hibernate supports loading as a
* {@linkplain java.util.ServiceLoader Java service}.
@ -14,5 +22,8 @@ package org.hibernate.service;
*
* @author Steve Ebersole
*/
@Target({TYPE,ANNOTATION_TYPE})
@Retention(RUNTIME)
@Documented
public @interface JavaServiceLoadable {
}