mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
5c4843aeaf
... since java files are not compiled on Jenkins causing compilation failures since the annotation cannot be found.
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 {
|
|
}
|