Skip to content

Commit

Permalink
Fix error in releasing
Browse files Browse the repository at this point in the history
```
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:3.4.1:jar (attach-javadocs) on project gitlab-logo: MavenReportException: Error while generating Javadoc:
[ERROR] Exit code: 1 - warning: unknown enum constant When.ALWAYS
[ERROR]   reason: class file for javax.annotation.meta.When not found
[ERROR] /home/runner/work/gitlab-logo-plugin/gitlab-logo-plugin/src/main/java/org/jenkinsci/plugins/gitlablogo/GitlabLogoProperty.java:29: error: tag not supported in the generated HTML version: tt
[ERROR]    * We'll use this from the <tt>config.jelly</tt>.
[ERROR]                              ^
[ERROR]
[ERROR] Command line was: /usr/lib/jvm/temurin-11-jdk-amd64/bin/javadoc @options @packages
[ERROR]
[ERROR] Refer to the generated Javadoc files in '/home/runner/work/gitlab-logo-plugin/gitlab-logo-plugin/target/apidocs' dir.
```

https://github.com/jenkinsci/gitlab-logo-plugin/actions/runs/3345053635/jobs/5540118933
  • Loading branch information
sue445 committed Oct 28, 2022
1 parent 3460b8c commit f064a86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public GitlabLogoProperty(String repositoryName) {
}

/**
* We'll use this from the <tt>config.jelly</tt>.
* We'll use this from the config.jelly.
*/
public String getRepositoryName() {
return repositoryName;
Expand Down

0 comments on commit f064a86

Please sign in to comment.