HHH-17047 - Follow up tasks for Gradle 8.2 upgrade
- toolchains - lazy Task creation - documentation (documentation/ and release/) tasks
This commit is contained in:
parent
7292e1d001
commit
740e02fb43
|
@ -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 {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue