mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
12 lines
309 B
Groovy
12 lines
309 B
Groovy
|
package com.sap.piper
|
||
|
|
||
|
import java.lang.annotation.ElementType
|
||
|
import java.lang.annotation.Retention
|
||
|
import java.lang.annotation.RetentionPolicy
|
||
|
import java.lang.annotation.Target
|
||
|
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Target([ElementType.METHOD, ElementType.TYPE])
|
||
|
public @interface GenerateDocumentation {
|
||
|
}
|