Skip to content

Commit

Permalink
#355 disable bug with javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed May 30, 2023
1 parent ff78179 commit 5b5ba4e
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</ciManagement>
<scm>
<connection>scm:git:github.com:jcabi/jcabi-aspects.git</connection>
<developerConnection>scm:git:github.com:jcabi/jcabi-aspects.git
</developerConnection>
<developerConnection>scm:git:github.com:jcabi/jcabi-aspects.git</developerConnection>
<url>https://github.com/jcabi/jcabi-aspects</url>
</scm>
<distributionManagement>
Expand Down Expand Up @@ -122,6 +121,21 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<version>3.4.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!-- There are errors related to the Version.java file, which is generated
during the "process-resources" phase by the templating-maven-plugin plugin.
Javadoc plugin, for some reason, doesn't see the generated file. -->
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 5b5ba4e

Please sign in to comment.